- Disappearing indicator ?????
- problem with my indicator work correctly but there is a problem with signal in live
- Optimisation results differ from single tests on them
I don't know whether you problem is the same as my "Spooky Spots" which seems to have gone with the new b765.
But to understand what you mean you should post the code and some snapshots!
I don't know whether you problem is the same as my "Spooky Spots" which seems to have gone with the new b765.
But to understand what you mean you should post the code and some snapshots!
Hi Sir,
at first thx for ur answer, here are screenshots which explains exactly the problem and the code of the indicator which can be found anywhere at the internet for free.
Without testing(!) but I would 1) skip this:
if ( bConditionUp ) CrossUp[i] = Low[i] - Range * 0.5; else if ( bConditionDown ) CrossDown[i] = High[i] + Range * 0.5;may
2) I would place the arrow-signals here:
if ( !bBuy && bConditionUp ) { CrossUp[i] = Low[i] - Range * 0.5; // <= placed here ... else if ( !bSell && bConditionDown ) { CrossDown[i] = High[i] + Range * 0.5; // <= placed here
3) finally I would replace the NormalizeDouble(..)-lines by:
NormalizeAccuracy = fmax(NormalizeAccuracy, 0.0001*Point); ... if( fabs(FastMA[i-1]- FastMA[i+1])> NormalizeAccuracy);
Hint: To see better the quality of the signals (as you count from shift=1 up you shouldn't get into troubles):
if ( !bBuy && bConditionUp ) { CrossUp[i] = Open[i-1]; //Low[i] - Range * 0.5; // <= placed here ... else if ( !bSell && bConditionDown ) { CrossDown[i] = Open[i-1]; //High[i] + Range * 0.5; // <= placed here
(you should use a different arrow in this case!)
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use

