Hello,
I have several indicators in a ea. And its displays the in the chart. Using enable/disable we can display the chart or hidden the chart value.
But How we can control the Indicator value display in the chart? Support want to display only MACD, when enable/disable, RSI, ADX its control separately. What will be the code. If I only want to display Each one as I need. Say I need a MACD only will display in the chart. Will not display either.
Please check the screenshot
Hello,
I have several indicators in a ea. And its displays the in the chart. Using enable/disable we can display the chart or hidden the chart value.
But How we can control the Indicator value display in the chart? Support want to display only MACD, when enable/disable, RSI, ADX its control separately. What will be the code. If I only want to display Each one as I need. Say I need a MACD only will display in the chart. Will not display either.
Please check the screenshot
use if condition for every indicator value you show in the chart as string .
if(MACD) { //macd value show } // of Show All if(Show All) { // all indicators value }

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello,
I have several indicators in a ea. And its displays the in the chart. Using enable/disable we can display the chart or hidden the chart value.
But How we can control the Indicator value display in the chart? Support want to display only MACD, when enable/disable, RSI, ADX its control separately. What will be the code. If I only want to display Each one as I need. Say I need a MACD only will display in the chart. Will not display either.
Please check the screenshot