Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Testing of Mr Larry Williams Formula

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • ArthurMFTse
    replied
    Thanks Ninjatrader_Cal and Harry.
    I will test agsin for the correct formula.
    Good Days.

    Leave a comment:


  • Harry
    replied
    The formula is false. (H+L+C) / 3) * O) would be a squared price and have a false dimension. The correct formulas for projected high and low are

    PP = (H + L + C) / 3
    PH = PP * 2 - L
    PL = PP * 2 - H

    Those levels are identical with the floor pivots R1 and S1. If you wish to calculate them from the regular session high, low and the settlement price, please use the SessionPivots indicator that can be found in the download section.

    Leave a comment:


  • NinjaTrader_CalH
    replied
    Hello ArthurMFTse,

    Thank you for your post and welcome to the forums!

    You would want to some run debugs through your script to ensure that you are getting the correct results from your calculations that you are expecting -

    First of all you would want to use Print() statements to verify values are what you expect - Debugging your NinjaScript code.

    It may also help to add drawing objects to your chart for signal and condition confirmation - Drawing Objects.

    Leave a comment:


  • ArthurMFTse
    started a topic Testing of Mr Larry Williams Formula

    Testing of Mr Larry Williams Formula

    Hi Everybody,

    I am testing the Larry Williams formula for entry strategy of
    following:
    Larry Williams Formula
    Inputs: Length(16),
    PH( ( ( (H+L+C) / 3) * 0) - L),
    PL( ( ( (H+L+C) / 3) * 0) - H);


    But is not working. Can anybody help to find out
    what is wrong.
    Thank you very much.


    #region Variables

    private DataSeries williamPH ;
    private double william_PH_highestValue = 0;

    protected override void Initialize()
    {
    williamPH = new DataSeries(this);

    CalculateOnBarClose = true;

    }
    protected override void OnBarUpdate()
    {

    //LONG CRITERIA


    if (Position.MarketPosition == MarketPosition.Flat)
    {
    SetStopLoss("PositionLong1",CalculationMode.Ticks, 20,false);
    SetProfitTarget("PositionLong1",CalculationMode.Ti cks, 10000);

    }

    // Resets the highest high at the start of every new session
    if (Bars.FirstBarOfSession)

    williamPH[0]= ( ( ( (High[0]+Low[0]+Close[0]) / 3) * Open[0]) - Low[0]);


    // Stores the highest high from the first 16 bars
    if (Bars.BarsSinceSession < 16
    && williamPH[0] >William_PH_highestValue )
    {
    William_PH_highestValue = williamPH[0];
    }

    // Entry Condition: Submit a buy stop order one tick above the first 30 bar high. Cancel if not filled within 34 bars.
    if (Bars.BarsSinceSession > 16 && Bars.BarsSinceSession < 50
    &&Position.MarketPosition == MarketPosition.Flat)
    {
    EnterLongStop(DefaultQuantity, William_PH_highestValue+2*TickSize,"PositionLong1" );
    InitialStopPrice = Low[1]-100*TickSize;
    ProTarget =2.5*( InitialStopPrice);

    SetStopLoss("PositionLong1", CalculationMode.Price, initialStopPrice, false);
    SetProfitTarget("PositionLong1", CalculationMode.Price, ProTarget);
    }

    }

Latest Posts

Collapse

Topics Statistics Last Post
Started by Brevo, Today, 01:45 AM
0 responses
2 views
0 likes
Last Post Brevo
by Brevo
 
Started by aussugardefender, Today, 01:07 AM
0 responses
3 views
0 likes
Last Post aussugardefender  
Started by pvincent, 06-23-2022, 12:53 PM
14 responses
238 views
0 likes
Last Post Nyman
by Nyman
 
Started by TraderG23, 12-08-2023, 07:56 AM
9 responses
384 views
1 like
Last Post Gavini
by Gavini
 
Started by oviejo, Today, 12:28 AM
0 responses
4 views
0 likes
Last Post oviejo
by oviejo
 
Working...
X