Gap
- This topic has 17 replies, 2 voices, and was last updated 2 years ago by robertogozzi.
-
-
10/16/2022 at 4:55 PM #202624
Metti questo indicatore sul grafico dei prezzi (non sotto):
123456789101112131415n = 30GapUP = summation[n](low >= (high[1] * 1.10))GapDN = summation[n](high <= (low[1] * 0.90))x = 0y = 0IF GapUP Thenx = 1DrawArrowUP(BarIndex,low[2]) coloured(0,128,0,155)ENDIFIF GapDN Theny = 2DrawArrowDOWN(BarIndex,high[2]) coloured(255,0,0,255)ENDIFn = x + yRETURN10/16/2022 at 10:58 PM #202638Grazie
credo dovrebbe porre quindi UNA freccia in ogni punto in cui si verifichi quindi un gap che rientri nei casi da me inseriti nel Proscreener, tuttavia (vd file allegato “Immagine.png”), vedo che, dopo il gap, compaiono frecce in ogni candela!
Si può modificare qualcosa?
Grazie!
10/17/2022 at 5:17 PM #202729Eccolo modificato. Non ripete il segnale quando il GAP è sempre sulla stessa barra (all’interno delle ultime N candele):
1234567891011121314151617181920212223n = 30GapUP = summation[n](low >= (high[1] * 1.10))BarraUP = BarsSince(GapUP)IF BarraUP = BarraUP[1] THENGapUP = 0ENDIFGapDN = summation[n](high <= (low[1] * 0.90))BarraDOWN = BarsSince(GapDN)IF BarraDOWN = BarraDOWN[1] THENGapDN = 0ENDIFx = 0y = 0IF GapUP Thenx = 1DrawArrowUP(BarIndex,low[2]) coloured(0,128,0,155)ENDIFIF GapDN Theny = 2DrawArrowDOWN(BarIndex,high[2]) coloured(255,0,0,255)ENDIFn = x + yRETURN -
AuthorPosts