Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Indicatore Calcola Secondi Live Per Ingressi Ritardati //
- // ATTENZIONE DA FARE SILO SULLO STUDY, SULLO STRATEGY APPENA SI CARICANO GLI INGRESSI DELLA STRATEGIA NON FUNZIONE VARIP !!! //
- // ATTENZIONE PER FARE DELLE PROVE CORRETTE, ASPETTARE DI AVERE ENTRY = 0.00 SULLA PENULTIMA CANDELA PRIMA DI METTERE L'ALERT ALTRIMENTI ENTRA SUBITO //
- //@version=5
- indicator("Indicatore Study Calcola Secondi Live Per Ingressi Ritardati", overlay=false)
- // Calcolo del tempo con il tempo attuale
- //var orario_barra = 0.0
- varip secondi_live = 0.0
- if barstate.isrealtime and secondi_live != timenow
- secondi_live := timenow
- plot(secondi_live, title="secondi")
- plotshape(close > open, title="close > open", color=color.green)
- plotshape(close < open, title="close < open", color=color.red)
- entry = 0
- if close > open and barstate.isconfirmed
- entry := 1
- plot(entry, title="entry")
- time_difference = secondi_live - last_bar_time
- // Facciamo una sorta di screen del tempo reale che si aggiorna ad ogni tick appena arriva l'alert o entriamo in posizione e lo confrontiamo con i secondi normali dandogli una differenza in millesecondi aggiunti
- // prima di mandare altri ordini per non instasare gli ordini.
- if entry == 1
- alert(" Entry Time At (" + str.tostring(secondi_live) + ") Close > open (", alert.freq_once_per_bar)
- //orario_barra := last_bar_time
- if entry[1] == 1 and (secondi_live - last_bar_time) > 10000 // 10 secondi di ritardo circa in "millisecondi"
- alert(" Exit Time After 10 Sec (" + str.tostring(secondi_live) + ") Close time position (" + str.tostring(time_difference) + ")", alert.freq_once_per_bar) // reduce only {2nda schermata sell solo stop-loss} {Use SL size from current position}
- //plot(secondi - orario_barra, "title=sec-temp")
- //plot(orario_barra, title="temp_att")
- plot(time_difference, title="time_difference")
- // Creazione di una label, mettere overlay = true //
- // if entry == 1 and barstate.islast
- // txt = "Time Difference: " + str.tostring(time_difference)
- // +"\nEntry Time: " + str.tostring(timenow)
- // // +"\nValore_Point: " + tostring(syminfo.pointvalue)
- // // +"\nMin_Tick: " + tostring(syminfo.mintick)
- // label.new(bar_index, na, text=txt, yloc=yloc.abovebar, color=color.red)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement