- Indicators: MACD_Histogram
- display problem with divergence during a backtest
- Divergence Indicators
Delete your old line objects in init()
Hallo phy ... basicly i'm not a programer ... i just combine a code base from stochastic with another code base.
So can you help me to see my stochastic_Divergence codebase and repair the code base ?
Thankyou ...
Try changing:
if(StringSubstr(label, 0, 19) != "Stochastic_DivergenceLine")
continue;
ObjectDelete(label);
to
if(StringFind(label, "Stochastic_DivergenceLine",0) >= 0) ObjectDelete(label);
Try changing:
if(StringSubstr(label, 0, 19) != "Stochastic_DivergenceLine")
continue;
ObjectDelete(label);
to
if(StringFind(label, "Stochastic_DivergenceLine",0) >= 0) ObjectDelete(label);
Thankyou phy ... it's working ...
thankyou verymuch ... excelence ...
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use