TAC VSA Volume Spread Analysis

v10.3
TAC VSA Volume Spread Analysis

Following the principles of Holey, Wyckoff, Livermore, Tom Williams, and Anna Coulling among others.

We have related the main ones:

▴Candle / Bullish Bar //green triangle

▾ Candle / Bearish Bar //red triangle

  • Sign indicating an anomaly between price and volume where a turn can be made in any direction by indecision. //circle
  • NODemand //red circle

-In this situation professionals will not sustain the market if they observe weakness in the background.

-If the volume is low in bullish days, this shows no demand for the big ones.

-NO DEMAND BAR: narrow range bar, low volume, close in half or in the lower part..

  • NOSupply //green circle

At the end of a bearish trend or bullish turn within the bearish trend, we will see an increase in hammer or candle candles with large shadows below that indicate demand pressure.

  • Test for Supply / Test Volume //blue circle

Bearish bars: If the price falls with volume lower than the two previous bars, with narrow range, and the current candle that marks the price closes in half or higher, indicates “NOSupply”.

  • StopVolume //gray circle

It shows the moment when purchases cover all sales.

-A high volume, bearish bar, wide range, will normally indicate sales, but …

-If the next day is bullish and close at maximum, this shows that the purchases absorbed the sales the previous day.

– Only professional money can do this and it is a good indicator of strength.

EFFORT:

  • UP //green circle
  • DOW  //red circle
  • UPTHRUST  //red circle
  • REVERSE UPTHRUST //green circle

 

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. TAC Bolsa • 06/20/2018 #

    //Last Code adapted 06/21/2018.

    vol=volume
    atr = averagetruerange[10](close)*0.5
    mm= average[100](volume)
    VolumeMA = Average[50](mm)
    Vlow = (VolumeMA – ((VolumeMA * 75) / 100))
    VolumeMAA = Average[50](mm)
    Vhigh = (VolumeMAA + ((VolumeMAA * 50) / 100))

    Spread3= Average[50](SPREAD1)
    SPREAD1 = High -low/2
    Spread2= Abs(High[0]-Low[0])
    WIDE= (SPREAD1[0] > Spread2[1]*1.8)
    NARROWS= SPREAD1[0] = open[0])
    DOWNBAR =(close[0] <= open[0])
    DOWNCLOSE=(Close[0]=(High[1]-((High[0]-Low[1])*0.3)))
    UP=max(UPCLOSE, UPBAR)
    Down= min(DOWNBAR, DOWNCLOSE)

    //Move Price
    if UP then
    DrawText(“▴”,barindex,low,SansSerif,bold,15)coloured(0,255,0)
    endif

    if Down then
    DrawText(“▾”,barindex,high,SansSerif,bold,15)coloured(200,0,0)
    endif

    //Divergence —- anomaly Price & Volume
    ND1=(abs(open – close) mm and up
    ND2=open[1] < close and vol < vol[1] and close[1] vhigh[1] and DOWNclose and Close[2]>Close[3] and High[1]>High[2]
    ND= ND1 or ND2 or ND3

    if ND then
    DrawText(“●”,barindex,High,SansSerif,bold,15)coloured(200,0,0)
    endif

    //NoDemand
    ND1= Vol[1] < vol[2] and UPCLOSE and DOWNBAR and (abs(open – close) <= (high – low)/2 )
    ND2 = vol < Vlow and Vol[0] close[1] and close > open and close <= open[1] and close[1] <= open and close – open < open[1] – close[1] ) and (abs(open – close) <= (high – low) * 5/100) and Vol[1] Close[2] and Close[1] < MIDCLOSE and narrows and Vol[1] < vol[2] and Vol[2] Vhigh[1] and Vol[1] > Vhigh[2]

    StoppingVolume = STPV1
    if StoppingVolume then
    DrawText(“StopVolume”,barindex,low-atr*0.5,SansSerif,bold,10)coloured(135,135,135)
    DrawText(“●”,barindex,high,SansSerif,bold,10)coloured(135,135,135)
    endif

    NSP1= (Close[1] < Close[2] and Close[1] Vhigh[2])

    //NO Supply
    NOSupply = NSP1
    if NOSupply then
    DrawText(“NOSupply”,barindex,low-atr*1,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,12)coloured(0,200,0)
    endif

    TESNSP1=(Close[1] UP and Vol[1] < Vol[2] and Vol[0] Vhigh[1] and vol[2] > vol[3] and Close[2]>Close[3] and High[1]>High[2]
    TESNSP3= wide and UP and Vol > Vhigh[1] and vol[2] > vol[3] and Close[2]<Close[3] and low[1]<low[2]

    //Test for Supply
    TESNSP = TESNSP1 or TESNSP2 or TESNSP3 and UPTHRUST
    if TESNSP then
    DrawText("Test for Supply",barindex,high+atr*1.4,SansSerif,bold,10)coloured(0,90,190)
    DrawText("●",barindex,high,SansSerif,bold,12)coloured(0,90,190)
    endif

    //"Reverse UPTHRUST"
    RUT1= (Close[1] < Close[2] and Close[1] vhigh[1] and vol[1] > vhigh[2] )

    ReverseUPTHRUST = RUT1
    if ReverseUPTHRUST then
    DrawText(“Reverse UPTHRUST”,barindex,low-atr*1.5,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,15)coloured(0,200,0)
    endif

    //UPTHRUST
    UT1 =(Close[1] > Close[2] and Close[1] > MIDCLOSE and Low[1] < Low[2] and Low[2] vol[2])

    UPTHRUST= UT1
    if UPTHRUST then
    DrawText(“UPTHRUST”,barindex,high+atr*1,SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,15)coloured(200,0,0)
    endif

    //Effort To Move Down
    EFTD1=WIDE and DOWNBAR and DOWNCLOSE and vol > vhigh and Vol[1]>Vol[2]
    EffortToMoveDown =EFTD1

    if EffortToMoveDown then
    DrawText(“EffortToMoveDown”,barindex,high+atr*2, SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,15)coloured(200,0,0)
    endif

    //Effort To Move Up
    EFTU1=WIDE and UPBAR and UPclose and vol > vhigh and Vol[1]>Vol[2]

    EffortToMoveup = EFTU1
    if EffortToMoveup then
    DrawText(“EffortToMoveup”,barindex,low-atr*2,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,15)coloured(0,200,0)
    endif

    Return

  2. TAC Bolsa • 06/20/2018 #

    Sorry is a code that will be improved day by day.
    Do not forget to always copy the last code to be updated.

    This indicator is a way to learn the relationship Price Volume
    There are no signs of entry or exit in the markets.

  3. TAC Bolsa • 06/20/2018 #

    Interpretation of the indicator
    https://www.tiburonesdealetacorta.com/2018/06/tac-vsa-volume-spread-analysis.html

  4. TAC Bolsa • 06/20/2018 #

    //Last improved code 06/24/2018 Version-V3
    ////////////////////////////////////////////////////////////////////////
    REM VSA Volume
    REM TAC VSA | indicator
    REM 09.06.2018
    REM RB @ http://www.tiburonesdealetacorta.com
    REM Sharing http://www.tiburonesdealetacorta.com
    ////////////////////////////////////////////////////////////////////////

    vol=volume
    atr = averagetruerange[10](close)*0.5
    mm= average[100](volume)
    VolumeMA = Average[50](mm)
    Vlow = (VolumeMA – ((VolumeMA * 75) / 100))
    VolumeMAA = Average[50](mm)
    Vhigh = (VolumeMAA + ((VolumeMAA * 50) / 100))

    Spread3= Average[50](Spread1)
    Spread1 = High -low/2
    Spread2= Abs(High[0]-Low[0])
    WIDE= (Spread1[0] > Spread2[1]*1.8)
    NARROWS= Spread1[0] = open[0])
    DOWNBAR =(close[0] <= open[0])
    DOWNCLOSE=(Close[0]=(High[1]-((High[0]-Low[1])*0.3)))
    UP=max(UPCLOSE, UPBAR)
    Down= min(DOWNBAR, DOWNCLOSE)

    //Move Price
    if UP then
    DrawText(“▴”,barindex,low,SansSerif,bold,15)coloured(0,255,0)
    endif

    if Down then
    DrawText(“▾”,barindex,high,SansSerif,bold,15)coloured(200,0,0)
    endif

    //Divergence —- anomaly Price & Volume
    d = close – open
    DV1=(abs(open – close) mm and up
    DV2=open[1] < close and vol < vol[1] and close[1] vhigh[1] and DOWNclose and Close[2]>Close[3] and High[1]>High[2] and Vol d[1]*2 and d[1] > 0 and d 0 and vol d[1]*2 and d[1] > 0 and d 0 and vol > vol[1]
    DV= DV1 or DV2 or DV3 or DV4

    if DV then
    DrawText(“●”,barindex,High,SansSerif,bold,10)coloured(200,0,0)
    endif

    //NoDemand
    ND1= Vol[1] < vol[2] and UPCLOSE and DOWNBAR and (abs(open – close) <= (high – low)/2 )
    ND2 = vol < Vlow and Vol[0] close[1] and close > open and close <= open[1] and close[1] <= open and close – open < open[1] – close[1] ) and (abs(open – close) <= (high – low) * 5/100) and Vol[1] Close[2] and Close[1] < MIDCLOSE and narrows and Vol[1] < vol[2] and Vol[2] < vol[3])
    ND5=Close average[20](vol)

    NoDemand = ND1 or ND2 or ND3 or ND4 or ND5 and UPTHRUST

    if NoDemand then
    DrawText(“NODemand”,barindex,high+atr*1,SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,10)coloured(200,0,0)
    endif

    //Stopping Volume
    STPV1= Vol[0] > Vhigh[1] and Vol[1] > Vhigh[2]

    StoppingVolume = STPV1

    if StoppingVolume then
    DrawText(“StopVolume”,barindex,low-atr*0.5,SansSerif,bold,10)coloured(135,135,135)
    DrawText(“●”,barindex,high,SansSerif,bold,10)coloured(135,135,135)
    endif

    NSP1= (Close[1] < Close[2] and Close[1] Vhigh[2])
    NSP2 =Close > Close[1] and Low=Lowest[10](Low) and Vol>average[20](vol)

    //NO Supply
    NOSupply = NSP1 or NSP2

    if NOSupply then
    DrawText(“NOSupply”,barindex,low-atr*1,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,10)coloured(0,200,0)
    endif

    TESNSP1=(Close[1] UP and Vol[1] < Vol[2] and Vol[0] Vhigh[1] and vol[2] > vol[3] and Close[2]>Close[3] and High[1]>High[2]
    TESNSP3= wide and UP and Vol > Vhigh[1] and vol[2] > vol[3] and Close[2]<Close[3] and low[1]<low[2]

    //Test for Supply
    TESNSP = TESNSP1 or TESNSP2 or TESNSP3 and UPTHRUST

    if TESNSP then
    DrawText("Test for Supply",barindex,high+atr*1.8,SansSerif,bold,10)coloured(0,90,190)
    DrawText("●",barindex,high,SansSerif,bold,10)coloured(0,90,190)
    endif

    //"Reverse UPTHRUST"
    RUT1= (Close[1] < Close[2] and Close[1] vhigh[1] and vol[1] > vhigh[2] )

    ReverseUPTHRUST = RUT1

    if ReverseUPTHRUST then

    DrawText(“Reverse UPTHRUST”,barindex,low-atr*1.5,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,12)coloured(0,200,0)
    endif

    //UPTHRUST
    UT1 =(Close[1] > Close[2] and Close[1] > MIDCLOSE and Low[1] < Low[2] and Low[2] vol[2])

    UPTHRUST= UT1 and EffortToMoveDown

    if UPTHRUST then
    DrawText(“UPTHRUST”,barindex,high+atr*1.5,SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,10)coloured(200,0,0)
    endif

    //Effort To Move Down
    EFTD1=WIDE and DOWNBAR and DOWNCLOSE and vol > vhigh and Vol[1]>Vol[2]

    EffortToMoveDown =EFTD1

    if EffortToMoveDown then
    DrawText(“EffortToMoveDown”,barindex,high+atr*2, SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,12)coloured(200,0,0)
    endif

    //Effort To Move Up
    EFTU1=WIDE and UPBAR and UPclose and vol > vhigh and Vol[1]>Vol[2]

    EffortToMoveup = EFTU1
    if EffortToMoveup then

    DrawText(“EffortToMoveup”,barindex,low-atr*2,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,12)coloured(0,200,0)
    endif

    Return

  5. TAC Bolsa • 06/20/2018 #

    //Last improved code 06/24/2018 Version-V3
    ////////////////////////////////////////////////////////////////////////
    REM VSA Volume
    REM TAC VSA | indicator
    REM 09.06.2018
    REM RB @ http://www.tiburonesdealetacorta.com
    REM Sharing http://www.tiburonesdealetacorta.com
    ////////////////////////////////////////////////////////////////////////

    vol=volume
    atr = averagetruerange[10](close)*0.5
    mm= average[100](volume)
    VolumeMA = Average[50](mm)
    Vlow = (VolumeMA – ((VolumeMA * 75) / 100))
    VolumeMAA = Average[50](mm)
    Vhigh = (VolumeMAA + ((VolumeMAA * 50) / 100))

    Spread3= Average[50](Spread1)
    Spread1 = High -low/2
    Spread2= Abs(High[0]-Low[0])
    WIDE= (Spread1[0] > Spread2[1]*1.8)
    NARROWS= Spread1[0] = open[0])
    DOWNBAR =(close[0] <= open[0])
    DOWNCLOSE=(Close[0]=(High[1]-((High[0]-Low[1])*0.3)))
    UP=max(UPCLOSE, UPBAR)
    Down= min(DOWNBAR, DOWNCLOSE)

    //Move Price
    if UP then
    DrawText(“▴”,barindex,low,SansSerif,bold,15)coloured(0,255,0)
    endif

    if Down then
    DrawText(“▾”,barindex,high,SansSerif,bold,15)coloured(200,0,0)
    endif

    //Divergence —- anomaly Price & Volume
    d = close – open
    DV1=(abs(open – close) mm and up
    DV2=open[1] < close and vol < vol[1] and close[1] vhigh[1] and DOWNclose and Close[2]>Close[3] and High[1]>High[2] and Vol d[1]*2 and d[1] > 0 and d 0 and vol d[1]*2 and d[1] > 0 and d 0 and vol > vol[1]
    DV= DV1 or DV2 or DV3 or DV4

    if DV then
    DrawText(“●”,barindex,High,SansSerif,bold,10)coloured(200,0,0)
    endif

    //NoDemand
    ND1= Vol[1] < vol[2] and UPCLOSE and DOWNBAR and (abs(open – close) <= (high – low)/2 )
    ND2 = vol < Vlow and Vol[0] close[1] and close > open and close <= open[1] and close[1] <= open and close – open < open[1] – close[1] ) and (abs(open – close) <= (high – low) * 5/100) and Vol[1] Close[2] and Close[1] < MIDCLOSE and narrows and Vol[1] < vol[2] and Vol[2] < vol[3])
    ND5=Close average[20](vol)

    NoDemand = ND1 or ND2 or ND3 or ND4 or ND5 and UPTHRUST

    if NoDemand then
    DrawText(“NODemand”,barindex,high+atr*1,SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,10)coloured(200,0,0)
    endif

    //Stopping Volume
    STPV1= Vol[0] > Vhigh[1] and Vol[1] > Vhigh[2]

    StoppingVolume = STPV1

    if StoppingVolume then
    DrawText(“StopVolume”,barindex,low-atr*0.5,SansSerif,bold,10)coloured(135,135,135)
    DrawText(“●”,barindex,high,SansSerif,bold,10)coloured(135,135,135)
    endif

    NSP1= (Close[1] < Close[2] and Close[1] Vhigh[2])
    NSP2 =Close > Close[1] and Low=Lowest[10](Low) and Vol>average[20](vol)

    //NO Supply
    NOSupply = NSP1 or NSP2

    if NOSupply then
    DrawText(“NOSupply”,barindex,low-atr*1,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,10)coloured(0,200,0)
    endif

    TESNSP1=(Close[1] UP and Vol[1] < Vol[2] and Vol[0] Vhigh[1] and vol[2] > vol[3] and Close[2]>Close[3] and High[1]>High[2]
    TESNSP3= wide and UP and Vol > Vhigh[1] and vol[2] > vol[3] and Close[2]<Close[3] and low[1]<low[2]

    //Test for Supply
    TESNSP = TESNSP1 or TESNSP2 or TESNSP3 and UPTHRUST

    if TESNSP then
    DrawText("Test for Supply",barindex,high+atr*1.8,SansSerif,bold,10)coloured(0,90,190)
    DrawText("●",barindex,high,SansSerif,bold,10)coloured(0,90,190)
    endif

    //"Reverse UPTHRUST"
    RUT1= (Close[1] < Close[2] and Close[1] vhigh[1] and vol[1] > vhigh[2] )

    ReverseUPTHRUST = RUT1

    if ReverseUPTHRUST then

    DrawText(“Reverse UPTHRUST”,barindex,low-atr*1.5,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,12)coloured(0,200,0)
    endif

    //UPTHRUST
    UT1 =(Close[1] > Close[2] and Close[1] > MIDCLOSE and Low[1] < Low[2] and Low[2] vol[2])

    UPTHRUST= UT1 and EffortToMoveDown

    if UPTHRUST then
    DrawText(“UPTHRUST”,barindex,high+atr*1.5,SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,10)coloured(200,0,0)
    endif

    //Effort To Move Down
    EFTD1=WIDE and DOWNBAR and DOWNCLOSE and vol > vhigh and Vol[1]>Vol[2]

    EffortToMoveDown =EFTD1

    if EffortToMoveDown then
    DrawText(“EffortToMoveDown”,barindex,high+atr*2, SansSerif,bold,10)coloured(200,0,0)
    DrawText(“●”,barindex,high,SansSerif,bold,12)coloured(200,0,0)
    endif

    //Effort To Move Up
    EFTU1=WIDE and UPBAR and UPclose and vol > vhigh and Vol[1]>Vol[2]

    EffortToMoveup = EFTU1
    if EffortToMoveup then

    DrawText(“EffortToMoveup”,barindex,low-atr*2,SansSerif,bold,10)coloured(0,200,0)
    DrawText(“●”,barindex,low,SansSerif,bold,12)coloured(0,200,0)
    endif

    Return

  6. Alai-n • 06/20/2018 #

    The download link of the .itf file !!! Always returns on version 1 and not on version 2.

    • TAC Bolsa • 06/20/2018 #

      Hello there is an error when copying the data in Prorealcode that we have reported …

      Please download new versions from this link.

      Version V3
      https://www.tiburonesdealetacorta.com/2018/06/tac-vsa-volume-spread-analysis.html

  7. Alai-n • 06/20/2018 #

    When we copy the latest version in the comment section. Syntax error line 21 “)” which once corrected, returns a syntax error line 38 and 39!

  8. TAC Bolsa • 06/20/2018 #

    Hello there is an error when copying the data in Prorealcode that we have reported …

    Please download new versions from this link.

    Version V3
    https://www.tiburonesdealetacorta.com/2018/06/tac-vsa-volume-spread-analysis.html

  9. Alai-n • 06/20/2018 #

    Good… 😉

  10. TAC Bolsa • 06/20/2018 #

    Please download new versions from this link.

    Version V4
    https://www.tiburonesdealetacorta.com/2018/06/tac-vsa-volume-spread-analysis.html

  11. TAC Bolsa • 06/20/2018 #

    Please download new versions from this link.

    Version V5
    https://www.tiburonesdealetacorta.com/2018/06/tac-vsa-volume-spread-analysis.html

  12. TAC Bolsa • 06/20/2018 #

    SHAKE OUT

  13. kbrooks323 • 06/20/2018 #

    Is there a way to develop a scan for the shakeout?

  14. TAC Bolsa • 06/20/2018 #

    Please download new versions from this link.
    Version V8
    https://www.tiburonesdealetacorta.com/2018/06/tac-vsa-volume-spread-analysis.html

  15. Bon Zo • 06/20/2018 #

    Does this indicator repainting his signals or not? Thanks in advance for your answer.

  16. Bon Zo • 06/20/2018 #

    or does this indicator lag in the way of displaying the defined signals or not?

    • TAC Bolsa • 06/20/2018 #

      You have to use it in daily or higher graphs to make a correct volume analysis

      In market closures is when between arbitrage,blocks, hidden orders. etc..

  17. Bon Zo • 06/20/2018 #

    Ok thanks a lot for your info and work.

  18. Bon Zo • 06/20/2018 #

    Hello, the problem is that the UPTHRUST and SHAKEOUT signals are displaying with 8-9 days delay
    Is it normal or not?

  19. Bon Zo • 06/20/2018 #

    ….in daily time frame

  20. Bon Zo • 06/20/2018 #

    Can you send me an editable version 8 of this indicator or not?

    • TAC Bolsa • 06/20/2018 #

      You confuse the reading of the volume.

      In order for a UPTHRUST to be fulfilled, it is followed by a valid Hidden Test and it does not recover the zone otherwise it would not be a UPTHRUST, the same case for the Shakeout.

      The indicator reads from the past and waits the future to mark signals can be given in the next candle or in 10 candles.

      Marked the signal with that delay where the test validates the price action.

      This indicator does not give a signal of entry or exit from the market.

      UPTHRUST or Shakeout is read in context after a test,

      These signals alone in the price is like having “a rocket without a deposit” Tom Wiliiams.

      Regarding the code can not be opened because it incorporates the cumulative delta and this code is private on all platforms.

      I recommend you read Wyckoff and then Tom Williams to understand this indicator.

    • TAC Bolsa • 06/20/2018 #

      If you look for an indicator that is sailing, use the indicator
      https://www.prorealcode.com/prorealtime-indicators/bill-williams-profitunity/

  21. Bon Zo • 06/20/2018 #

    Hey, thanks i made a little research with the links you provide on your website and i read Wyckoff so i understand what this whole thing is about now, Actually, there is a lot to read.
    As you said, i thought your indicator gave trading signals but when i read your comments above yesterday, i understood that you created this indicator for research purpose, it was too good to be true.
    I understand a little bit what is a shakeout now but as i am obstinate i am still wondering if a shakeout indicator could be created with other parameters that could be useful in the test in order to use less than 10 candles to insure the probability about the realisation of what we call “a shakeout” in modern trading. I checked also the Profitunity indicator yesterday and i am currently use it i think it is an excellent indicator for daytrading so crongratulation and thanks to you for having taken the time to answer my previous questions.

  22. Kris75 • 06/20/2018 #

    Hi TAC,
    Thanks a lot for this great piece of work; -) MUCHAS gracias 😉
    did I read right, you cannot give us the conditions to identify the shakeout?

    • TAC Bolsa • 06/20/2018 #

      All indicators share some code of other TAC indicators that improve the functioning of this …

      This in some cases has an owner .. and these do not authorize the sharing of the code but the yes use of the indicator by third parties with the code blocked.

      For my part, being the programmer to be grateful that they authorize us to share the indicator for free, even if it is blocked.

  23. ramonjp • 06/20/2018 #

    Hi Tac,

    Great job. Please, can you provide latest code version of this indicator without any private code?

    Thanks in advance.
    Regards.

  24. Tze Khai Lim • 06/20/2018 #

    Hi Tac, pls provide latest code version of this indicator. Thanks in advance.

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
YvesRobert Merci beaucoup Nicolas. Existe t'il un petit programme qui permet de tracer sur la graphe en...
Nicolas Oui il y a celui ci: https://market.prorealcode.com/product/prt-renko/?lang=fr
YvesRobert Bonjour Nicolas, j'ai une question technique à te poser. Je visualise souvent le cours en RE...
GenesisEX Thank you all for your contributions this is a great submission. Thanks for your inputs.
tino Bonjour nicolas. Je ne parviens pas à recopier le screener de l'indicateur. Auriez vous la g...
Nicolas Quel screener svp? C'est dans un des sujets du forum? Merci de fournir le lien.
gabri Ha ragione in computer, ho sbagliato io BullAD = summation[period](ADvolbull*((Close-Low) –...
marcov66 Perfetto! Funziona. Grazie di tutto!
SkrHugo Bonjour, J'essaye d'utiliser le script avec le graphique renko mais sa ne marche pas, quelq...
Tonicejudo Hola Nicolas, a ver si me puedes ayudar. Hay un indicador que se llama volumen stop de bolsa...
Nicolas Utilice los foros para hacer preguntas no relacionadas con la página actual ...
Alai-n I also have the same problem that I can not solve especially on LowVolume (Yellow) ... Sorry
Mert No need to apologise, my friend. It is great code. I hope you find a solution soon. Regards.
gabri I think it's because the lookback period changes at every new bar and that means that many c...
Giuseppe68 ciao, ho provato l'indicatore e mi sembra interessante, ma in fase di backtest non riesco ad...
poldoposta veramente bello.....complimenti
rb-72 Thank you, area of twist by dilatacion of the price, missing part of the code that is not pu...
Thomas007 after reading your blog now I understand why there is only a part of your code here. I'm try...
Juanjo Hola¡¡ la estrategia se podria aplicar sobre acciones con marco temporal diario?? gracias.
rb-72 5 Minutes, 15 Minutes, The most effective 1 Hour below 0 or above 0 as a turn signal in the ...
Andraxx Interpretación de el indicador??? Gracias
TAC Bolsa Oscilador que hace una medición ponderara basado en la distancia entre precio y una media Mó...
Nicolas Better to download the file from the page and import it into your platform in order to not c...
marcov66 Hi Nicolas, thanks for sharing the VWAP Date Indicator. It is really powerful. Nevertheless,...
Nicolas Are you sure you are using the same exact date, hours, minutes, seconds for anchor?
julien1978 changing the trendDetectionLength setting does not seem to have any effect on the wave calcu...
arran i can't seem to get this indicator to work on forex pairs. it works great on indices etc. An...
Nicolas Indicator needs Volume, and there are no volumes with forex pairs with IG.
Trading_En_El_Ibex35 El screener no busca acciones que estén en máximos absolutos , busca acciones en las que el...
Andraxx lo de volumen aceptable, lo dices en relación al Ibex 35 supongo. Porque se margen de volume...
Juanjo Hola Queria preguntarte si la idea de maximos anuales es tuya, o bien está basada en el sis...
BERTJES82 Hi Nicolas, is it possible to adjust the starting date of the VWAP on the charts? Thanks in ...
Nicolas Yes, have a look there: https://www.prorealcode.com/prorealtime-indicators/vwap-date-anchored/
Dadoo Merci Nicolas!
Thomas007 Is there any way to build something similar for FX? I wonder what would be the replacement f...
Jean-Pierre Poulain When I buy and when I sell ?
Nicolas The featured image of the post do not deserve the indicator you are right, I attached other ...
Nicolas It is described in the post already :) The BUY/SELL signals are quite similar of what you ca...
Nicolas
8 years ago
jiminykricket Hi Nicolas, Its fair to say i'm a relative novice with ProRealtime and as such i am not sur...
Nicolas You can use assisted creation in probacktest, you'll get a quick overview on how to call a p...
jiminykricket Thanks Nicolas, i'll take a look
bolsatrilera
8 years ago
Volume Stops
v10.3
Volume Stops
6
Indicators
Aragorna Hello, ask for a help, please. why the indicator in my PRT is in a different area and not in...
Nicolas Add it on the price chart: https://www.prorealcode.com/blog/video-tutorials/how-to-add-an-in...
Infanta Congratulations. Of all the indicators that I have been able to examine, in my opinion and f...
Nicolas
8 years ago
Voluminator
Voluminator
0
Indicators
Nicolas
8 years ago
Nicolas Sure, please open a new topic in the probuilder forum with all specifications needed.
toni1750 Hola, funciona en P11? lo he puesto y no me sale como en la imagen. gracias.
GustavoLoboOrenstein Hello Nicolas, I have a cumulative histogram update problem, the indicator often updates ...

Top