TradingView
tradeforopp
3 Nov 2022 pukul 20.42

Timeframe Continuity [TFO] 

E-mini Nasdaq-100 FuturesCME

Deskripsi

Simple timeframe continuity indicator - see whether the selected timeframes are currently above or below their opening prices. Allows up to 10 different timeframes to be used.

Catatan Rilis

Update chart image.

Catatan Rilis

Added the option to display the timeframes horizontally instead of vertically

Catatan Rilis

Added a feature to visualize full timeframe continuity (FTFC) with dynamic bar coloring. Also added the option to change the table position, and fixed an issue where certain timeframes weren't appearing in the TFC table

Catatan Rilis

- Added FTFC Labels
- Added inside bar color options for the timeframe table
- Added ability to show Mother Bar High & Low, if a given (selected) timeframe is currently an inside bar

Catatan Rilis

Fixed an issue where the script was crashing on lower timeframes that were too small too pull certain higher timeframe data
Komentar
CaliStocks
Is there a way to move the table? It sits right on my description. Thank you :)
OpitaMaster
You can add this to the end of the code for alerts.
--------------------------------------------------------------------------
if ftfc_up and not ftfc_up[1]
ftfc_up_last := true
if ftfc_labels
if ftfc_label_type == 'Flip' ? (ftfc_up_last and not ftfc_up_last[1]) : true
label.new(bar_index, low, "FTFC Up", color = color.new(up_close_color, 0), textcolor = color.white, style = label.style_label_up)

// Alert condition for FTFC Up
alertcondition(ftfc_up and not ftfc_up[1], title="FTFC Up Alert", message="FTFC Up condition met")

if ftfc_dn and not ftfc_dn[1]
ftfc_up_last := false
if ftfc_labels
if ftfc_label_type == 'Flip' ? (not ftfc_up_last and ftfc_up_last[1]) : true
label.new(bar_index, high, "FTFC Down", color = color.new(dn_close_color, 0), textcolor = color.white, style = label.style_label_down)

// Alert condition for FTFC Down
alertcondition(ftfc_dn and not ftfc_dn[1], title="FTFC Down Alert", message="FTFC Down condition met")
akuperus1964
@OpitaMaster, great stuff, many thanks.
Shalom_out
What to the gray candles represent? (other than neutral)
jferheart
can you review how this script works? Im following you on youtube
tradeforopp
@jferheart, from the description: see whether the selected timeframes are currently above or below their opening prices. For more info on why it's relevant, you can look up the concept of full timeframe continuity on YouTube.
jamerd06
Tfo are you able to add alerts for when displacement is found... sorry posted on wrong indicator
sabrinaar7
Any idea why my bars are not changing colour with the tfc? :(
tireman613
Can you change 0,1,2 to 1, 2u, 2d, 3 so we can use it for Strat colors please?
DogX
Omg thank you very much :D
Lebih lanjut