Beginner

damigeezy

Trader
Jun 28, 2024
1
0
6
32
Good day... please can you modify beginner indicator to show a different colour when two dots appear and another colour when only a dot appear.instead of showing same color for a single dot and double dots.

That way one can easily recognize single and double dots that has already been painted when one wasn't online......thanks
 

Enivid

Administrator
Staff member
Nov 30, 2008
19,240
1,507
144
Odesa
www.earnforex.com
Good day... please can you modify beginner indicator to show a different colour when two dots appear and another colour when only a dot appear.instead of showing same color for a single dot and double dots.

That way one can easily recognize single and double dots that has already been painted when one wasn't online......thanks
Hello! Double dots you say? This indicator shouldn't be showing any double dots. Perhaps, you've spotted some bug here. Could you please provide more information?
 

joeey1984

Newbie
Sep 26, 2024
3
0
1
36
I have a question, can you tune this indicator to recalculate the data in real time?
The issue with the indicator is that the data from live chart is different from historical chart, I want the live chart to refresh every one or two candle for example to show historical data
Post automatically merged:

I have a question, can you tune this indicator to recalculate the data in real time?
The issue with the indicator is that the data from live chart is different from historical chart, I want the live chart to refresh every one or two candle for example to show historical data
Post automatically merged:

I will compensate you if you can help me. Thanks
 

Attachments

  • BeginnerAlert.mq4
    4.3 KB · Views: 3

Enivid

Administrator
Staff member
Nov 30, 2008
19,240
1,507
144
Odesa
www.earnforex.com
Change this line:
MQL4:
if(CB<0) return(-1); else if(NB>Bars-CB) NB=Bars-CB;
To this:
MQL4:
if (CB == 0) NB = Bars; else NB = Per + 11;

This should make sure that all bars that are repainting to be processed each tick.