TradingView
tradeforopp
2022년 11월 3일 오후 8시 42분

Timeframe Continuity [TFO] 

E-mini Nasdaq-100 FuturesCME

설명

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.

릴리즈 노트

Update chart image.

릴리즈 노트

Added the option to display the timeframes horizontally instead of vertically

릴리즈 노트

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

릴리즈 노트

- 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

릴리즈 노트

Fixed an issue where the script was crashing on lower timeframes that were too small too pull certain higher timeframe data
코멘트
Shalom_out
What to the gray candles represent? (other than neutral)
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.
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
더보기