Buongiorno , ho questo codice Gian Gap WW1 , è possibile far cancellalre i Gap che sono stati coperti in futuro da Shadow ( un metodo o un codice ) o dal Body ( secondo metodo o altro codice ) lasciando solo quelli che NON sono stati rintracciati ? Se bisogna impostare il numero di candele va benisimo , grazie
//Gaps
//Extension = 10
GapUp=(low>high[1])
GapDown=(high<low[1])
if GapUp then
DRAWTEXT(" ==", barindex, (high[1]+low)/2, Dialog, Bold, 20) COLOURED(0,0,255)
//DRAWRECTANGLE(barindex[1]-1,low[1],barindex+Extension,high)coloured(248,248,255)
else
if GapDown then
DRAWTEXT(" ==", barindex, (high+low[1])/2, Dialog, Bold, 20) COLOURED(255,0,255)
endif
endif
RETURN