support 发表于 2023-3-10 16:13:50

K线波动检测:K线开始发疯了

#property strict
#property indicator_chart_window
#propertyindicator_chart_window
input double CRPoint = 100;
int init()
{
   return(0);
}
int start()
{
   if((High - Low) / Point > CRPoint)
   {
      Alert("K线开始发疯了");
   }
   //Print((High - Low) / Point);
   return(0);
}

anna 发表于 2023-3-16 12:01:37

66666

luck88 发表于 2023-7-24 10:25:01

:$

醉红尘灬残月 发表于 2024-1-23 11:20:29

感谢美女分享
页: [1]
查看完整版本: K线波动检测:K线开始发疯了