Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

sherbaaz

⭐ V.I.P.
  • Posts

    478
  • Joined

  • Last visited

  • Days Won

    12

Posts posted by sherbaaz

  1. keeping aside that feibel copy Dayton and the type of vendor he is, he is a far better teacher/trainer than Dayton. in every aspect. Dayton may have more knowledge than feibel but does not teach in a lucid and easy manner. dayton does not come out with clarity which feibel has in his explaination.

     

    here it's very easy to compare as the material is the same and more or less the same format. be it UT/spring/chart reading mastery or any other course.

  2. hi all,

    below is the tradingview code for PNF chart which can be superimposed on bar candle line chart. calculation for PNF chart is right. I want to add zigzag option in "chart style as", rest of the things are absolutely fine.

    somebody please help. right now i am using moving average of PNF as work around.

     

    thanks a lot.

    pnf.txt

  3. whether the trainer/vendor is actually trading or not trading, must not be the criteria for selecting a trading course. but is he is explaining the concepts properly and in a lucid manner are the most imp things to look for.

     

    secondly, no course is bad or good (mostly). somebody vouches for simple divergence somebody vouch for WWA etc. whatever one likes, at least check that course. it may be the worst course for me but you may find it your holy grail.

  4. hi, all below is the code of zigzag high low. on selecting length to a high number of bars like 16 on 1 min time frame it compressed the chart vertically. any solution to remove the compression? kindly help if anybody is good in coding

     

    //@version=4
    study("Zig Zag High Low", overlay = true)
    length = input(4, title = "High/Low length")
    h = highest(high, length * 2 + 1)
    l = lowest(low, length * 2 + 1)
    f_isMin(len) =>
    l == low[len]
    f_isMax(len) =>
    h == high[len]
    
    var dirUp = false
    var lastLow = high * 100
    var lastHigh = 0.0
    var timeLow = bar_index
    var timeHigh = bar_index
    var line li = na
    f_drawLine() =>
    _li_color = dirUp ? color.teal : color.orange
    line.new(
    timeHigh - length, lastHigh,
    timeLow - length, lastLow,
    xloc.bar_index, color=_li_color, width=2
    )
    
    if dirUp
    if (f_isMin(length) and low[length] < lastLow)
    lastLow := low[length]
    timeLow := bar_index
    line.delete(li)
    li := f_drawLine()
    
    if (f_isMax(length) and high[length] > lastLow)
    lastHigh := high[length]
    timeHigh := bar_index
    dirUp := false
    li := f_drawLine()
    
    if not dirUp
    if (f_isMax(length) and high[length] > lastHigh)
    lastHigh := high[length]
    timeHigh := bar_index
    line.delete(li)
    li := f_drawLine()
    if f_isMin(length) and low[length] < lastHigh
    lastLow := low[length]
    timeLow := bar_index
    dirUp := true
    li := f_drawLine()
    if (f_isMax(length) and high[length] > lastLow)
    lastHigh := high[length]
    timeHigh := bar_index
    dirUp := false
    li := f_drawLine()
    

  5.  

    SND is really powerful, what is the best course about SND?

     

    there is nothing like the best course. it all depends on the trader's personality and liking. what I have written is from my perspective. somebody may found it to be the best course.

    I am a day trader who trades only 1 instrument on 1-time frame (2 minutes) I use market structure and FTR. this suits me.

  6. Jesus!!!!

     

    more than 6 G. B. size course and absolutely no information as to what it is and is it worth taking trouble. Is it a complete blackbox?

     

    If anyone has watched these videos, kindly write a post here as to what to expect in this course.

     

    That would be of great help to many members here

    Thanks in advance

     

     

    this is what the course covers broadly:

    1) order blocks

    2) SND

    3) Wyckoff schematics.

    4) combining Wyckoff with SND/OB

    5) mitigation

    6) MTF analysis

    7) psychology

     

    is the course worth the time? as per me BIG NO. but others may have found it good.

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...