If you compile a indicator and if the compiler print out a warning like this:
"No indicator plot defined for indicator"
this indicator doesn't work with Build 315.
The indicator is listed in Indicators List, but OnInit() function isn't called.
Is this a new specification?
I made a simple test indicator.
No message is printed on Build 315...This warning will be displayed in the absence of information for display on of the chart.
In the example need add array or several arrays (on perforce) to store information and calculate their values.
You should also define additional parameters of the new indicator.
Example
#property indicator_chart_window #property indicator_buffers 3 #property indicator_plots 1 #property indicator_type1 DRAW_ARROW #property indicator_color1 Red #property indicator_label1 "Comment"
This warning will be displayed in the absence of information for display on of the chart.
In the example need add array or several arrays (on perforce) to store information and calculate their values.
You should also define additional parameters of the new indicator.
Example
Thanks, I struggled for an hour to figure out what is wrong with my indi that worked before the new update, if I had not read this I would have gone out of my mind. Thanks!
Thank you for your replies.
I'll be waiting for the next build.
Unfortunately, in this build due to extra checks do not work indicators, which do not have buffers.
This behavior will be fixed in the next build. To use this indicators in this build you should specify the presence of buffer by command
Example for build 315
#property indicator_chart_window #property indicator_buffers 1 #property indicator_plots 1

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
If you compile a indicator and if the compiler print out a warning like this:
this indicator doesn't work with Build 315.
The indicator is listed in Indicators List, but OnInit() function isn't called.
Is this a new specification?
I made a simple test indicator.
No message is printed on Build 315...