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