TradingView
wilkesvb
3 фев 2022 г., 18:33

FX Mini-Day/Index Dividers V2 

US SPX 500OANDA

Описание

This is a combination of the Mini-Day Separator Indicator, timings based off the research by Tom Henstridge/@LiquiditySniper and additional Index KZ delineations, based on ICT's 2022 Youtube Mentorship.

*It borrows some minor code from Enricoamato997. Credit where it is due!

This is a joint effort by myself, @vbwilkes / Offseason Vince and @Tom_FOREX / TraderTom on the Index/Index Future portion.


Index Future Example




Forex Example

Информация о релизе

Updated End time to 4:30 after reviewing 2022 Mentorship Video #5

Информация о релизе

Updated limits to how far in the past the indicator can draw. Added ability to delineate 1hr opening times for FX killzones.
Комментарии
CRey002
Hello Man can you edit this with PO3 too style? maybe with open silberbullet?
dessiestrose
Hey, how did you get CBDR to display?
wilkesvb
@dessiestrose, That is the FXN Asian Session Range by RobMinty. It displays Asian, London, and New York ranges. I edited/repurposed London to use it for CBDR.
OP_YODAS
It is not working for crypto. Any work arounds?
wilkesvb
@OP_YODAS, Sorry man I don't really care about crypto so never gave it 2 seconds thought. Maybe one day I'll get to it or maybe someone else can make that edit.
udbzgfzqh14le4n
Bro, is there any way of adding minutes to it (Killzones lines)? I mean, instead of 2:00 - 5:00pm ; i.e: 2:15 - 5:30 AM?
wilkesvb
@udbzgfzqh14le4n, you want to be able to change the times to reflect those? I'm not going to build that into the indicator because it was made for a specific idea, but 3600000 is the value for 1 hour in milliseconds. Divided by 60 gives you the value for 1 minute which is 60000. 60000 x 15 is 900000.

Look for this line #42:
MKZ1 = line.new(time + 2*dt+1800000, 1,time + 2*dt+1800000,2,xloc=xloc.bar_time, extend=extend.both, color = lineColor, style=day_line_style,width=WIDTH)

and with:

MKZ1 = line.new(time + 2*dt+900000, 1,time + 5*dt+1800000,2,xloc=xloc.bar_time, extend=extend.both, color = lineColor, style=day_line_style,width=WIDTH)

and delete all the other lines if you want.
Ещё