TradingView
Craig_Stine
3 Th08 2019 03:20

Key Intraday Levels  

SPDR S&P 500 ETF TRUSTArca

Mô tả

Included is the current open, previous high, Low, Close, and the gap is highlighted.

Phát hành các Ghi chú

Updated so the script only shows on intraday charts.
Bình luận
krishna2509
I would like to hide have only previous day levels and not historical levels. Rather weekly levels could be of great help. Can u advise
Craig_Stine
@krishna2509, I am not sure how to script it to get rid of the historical data. I just find things in scripts and put them together to try to create what I want and I couldnt figure that out. I did just publish a script for a weekly version for you linked below. But all you have to do is change all the 'D' in the section below to 'W' and it will work for weekly. You could also do monthly by putting a 'M'.

//Current Open/Previous High,Low,Close
cdo = security(tickerid, 'D', open)
pdc = security(tickerid, 'D', close[1])
pdh = security(tickerid, 'D', high[1])
pdl = security(tickerid, 'D', low[1])

tradingview.com/script/47OM7QNi-Key-Weekly-Levels/
krishna2509
@Craig_Stine, thanks for the prompt reply. Got help from other scripts and modified to this.

plot(pdc, title="Prev Close", style=line, linewidth=1, color=closecolour,show_last=1, trackprice=true, offset=offset_val)

show_last =1 is the key here.
maneamit2706
Can you please confirm what is green zone and red zone on chart
yesh81
How to trade with this indicator
Swirlinco
Is there a version 4 update of this?
syracusepro
What instrument and timeframe is shown?
Craig_Stine
@syracusepro, The chart is of the SPY on a 15 min. time frame but this script can be used with any intraday time frame. The script plots lines for the current day open, previous day high, previous day low, and previous day close. The overnight gap is highlighted red or green depending on if it was a gap up or gap down. Hope that helps.
Thêm nữa