prezzo incroci Kijun Ichimoku
Forums › ProRealTime forum Italiano › Supporto ProBuilder › prezzo incroci Kijun Ichimoku
- This topic has 7 replies, 4 voices, and was last updated 4 years ago by robertogozzi.
Viewing 8 posts - 1 through 8 (of 8 total)
-
-
04/13/2020 at 2:17 PM #125939
Buongiorno a tutti,
sarebbe possibile creare uno script che visualizza sul grafico (su qualsiasi time frame) con una freccia, quando il prezzo, a candela chiusa, incrocia al rialzo o al ribasso la linea della Kijun (Ichimoku).
grazie
04/13/2020 at 4:36 PM #125965Eccolo:
Kijunsen crossings (Ichimoku)1234567891011121314// settaggi e parametri Ichimoku//Offset = 35 * pipsize//Tenkansen = (highest[9](high) + lowest[9](low)) / 2 //media VeloceKijunsen = (highest[26](high) + lowest[26](low)) / 2 //media LENTA//SpanA = (tenkansen[26] + kijunsen[26]) / 2//SpanB = (highest[52](high[26]) + lowest[52](low[26])) / 2//Chikou = close[26]IF close CROSSES OVER Kijunsen THENDRAWARROWUP(BarIndex,low - Offset) coloured(0,255,0,255)ELSIF close CROSSES UNDER Kijunsen THENDRAWARROWDOWN(BarIndex,high + Offset) coloured(255,0,0,255)ENDIFRETURN06/12/2020 at 6:41 PM #13578306/14/2020 at 9:44 AM #135877Non ci sono 78 caratteri alla linea 5.
Verifica di avere scritto bene.
Che versione hai della piattaforma?
06/14/2020 at 10:43 PM #13593306/15/2020 at 10:36 AM #135984Si, il problema è che la v11 ha già alcune parole riservate relative ad Ichimoku, per cui era un problema di sintassi che ho risolto aggiungendo una X ai nomi:
1234567891011121314// settaggi e parametri Ichimoku//Offset = 35 * pipsize//TenkansenX= (highest[9](high) + lowest[9](low)) / 2 //media VeloceKijunsenX = (highest[26](high) + lowest[26](low)) / 2 //media LENTA//SpanA = (tenkansenX[26] + kijunsenX[26]) / 2//SpanB = (highest[52](high[26]) + lowest[52](low[26])) / 2//Chikou = close[26]IF close CROSSES OVER KijunsenX THENDRAWARROWUP(BarIndex,low - Offset) coloured(0,255,0,255)ELSIF close CROSSES UNDER KijunsenX THENDRAWARROWDOWN(BarIndex,high + Offset) coloured(255,0,0,255)ENDIFRETURN09/28/2020 at 7:18 PM #14575909/28/2020 at 11:57 PM #145789Ecco lo screener, restituisce 1 quando rialzista, 2 quando ribassista:
1234567891011121314151617// settaggi e parametri Ichimoku////Offset = 35 * pipsize//TenkansenX= (highest[9](high) + lowest[9](low)) / 2 //media VeloceKijunsenX = (highest[26](high) + lowest[26](low)) / 2 //media LENTA//SpanA = (tenkansenX[26] + kijunsenX[26]) / 2//SpanB = (highest[52](high[26]) + lowest[52](low[26])) / 2//Chikou = close[26]Risultato = 0IF close CROSSES OVER KijunsenX THEN//DRAWARROWUP(BarIndex,low - Offset) coloured(0,255,0,255)Risultato = 1ELSIF close CROSSES UNDER KijunsenX THEN//DRAWARROWDOWN(BarIndex,high + Offset) coloured(255,0,0,255)Risultato = 2ENDIFSCREENER[Risultato](Risultato AS "1=↑, 2=↓") -
AuthorPosts
Viewing 8 posts - 1 through 8 (of 8 total)
Find exclusive trading pro-tools on
Similar topics: