NexusFi: Find Your Edge


Home Menu

 





PriceActionSwing discussion


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one Silvester17 with 177 posts (570 thanks)
    2. looks_two dorschden with 99 posts (1,124 thanks)
    3. looks_3 Big Mike with 52 posts (90 thanks)
    4. looks_4 jmont1 with 51 posts (23 thanks)
      Best Posters
    1. looks_one dorschden with 11.4 thanks per post
    2. looks_two Silvester17 with 3.2 thanks per post
    3. looks_3 Big Mike with 1.7 thanks per post
    4. looks_4 sudhirc with 1.7 thanks per post
    1. trending_up 965,878 views
    2. thumb_up 2,947 thanks given
    3. group 613 followers
    1. forum 2,093 posts
    2. attach_file 615 attachments




 
Search this Thread

PriceActionSwing discussion

  #1681 (permalink)
 
wilson619's Avatar
 wilson619 
San Diego, CA
 
Experience: None
Platform: NT8
Trading: Futures
Posts: 83 since Jun 2010
Thanks Given: 208
Thanks Received: 71

I'm using the latest version of the PAS for NT8 and want it to show the bar count from each swing low to swing low and from each swing high to swing high. Can anyone please tell me what lines of code I need to change in order to display this?

Thanks,
Wilson

Attached Thumbnails
Click image for larger version

Name:	Swing High Bar Count, Swing Low Bar Count.png
Views:	340
Size:	94.1 KB
ID:	256283  
Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
New Micros: Ultra 10-Year & Ultra T-Bond -- Live Now
Treasury Notes and Bonds
Online prop firm The Funded Trader (TFT) going under?
Traders Hideout
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
Ninja Mobile Trader VPS (ninjamobiletrader.com)
Trading Reviews and Vendors
 
  #1682 (permalink)
 curleta 
Olivos, Buenos Aires, _Argentina
 
Experience: Intermediate
Platform: ninjatrader
Trading: futures
Posts: 52 since Nov 2014
Thanks Given: 14
Thanks Received: 2

hi.
a query, does this indicator exist for TOS?

Reply With Quote
  #1683 (permalink)
 curleta 
Olivos, Buenos Aires, _Argentina
 
Experience: Intermediate
Platform: ninjatrader
Trading: futures
Posts: 52 since Nov 2014
Thanks Given: 14
Thanks Received: 2



pepbosch View Post
You need special code for market analyzer if you need to access some series from the indicator


Do you know someone who programs that code to make it work in NT8?

Reply With Quote
  #1684 (permalink)
 sdat 
Dallas Georgia
 
Experience: Intermediate
Platform: Ninja Trader
Broker: TD Ameritrade
Trading: ES ZB CL
Posts: 9 since Jul 2018
Thanks Given: 2
Thanks Received: 5

I haven't had a red day since I installed this.

Visit my NexusFi Trade Journal Reply With Quote
  #1685 (permalink)
 pnguyen720 
Los Angeles
 
Experience: Beginner
Platform: NinjaTrader
Trading: NQ CL GC
Posts: 52 since Jan 2017
Thanks Given: 11
Thanks Received: 16


sdat View Post
I haven't had a red day since I installed this.

Might I ask how are you using this indicator? The ABC entry? Divergence?

Reply With Quote
  #1686 (permalink)
 pepbosch 
Madrid - Spain
 
Experience: Intermediate
Platform: NinjaTrader
Broker: CONTINUUM
Trading: ES, Currency Futures, Forex, oil, gold, EUR/USD, Stocks
Posts: 315 since Jun 2014
Thanks Given: 412
Thanks Received: 132


curleta View Post
Do you know someone who programs that code to make it work in NT8?

What oscilator will you be using with PASPRO ? And What signal are you interested in?

PEP

Follow me on Twitter Reply With Quote
  #1687 (permalink)
 curleta 
Olivos, Buenos Aires, _Argentina
 
Experience: Intermediate
Platform: ninjatrader
Trading: futures
Posts: 52 since Nov 2014
Thanks Given: 14
Thanks Received: 2


pepbosch View Post
What oscilator will you be using with PASPRO ? And What signal are you interested in?

PEP

hi, am I interested in the abc signals, when I show the arrow it is activated in market analizer? can do it?

Reply With Quote
  #1688 (permalink)
 Siddin 
Vancouver, WA
 
Experience: Beginner
Platform: NinjaTrader
Trading: NQ
Posts: 4 since Oct 2018
Thanks Given: 5
Thanks Received: 1


dorschden View Post

 
Code
#region Using declarations
...
using PriceActionSwingOscillator.Utility;
#endregion

#region Variables
private int swingSize = 7;
private SwingTypes swingType = SwingTypes.Standard;
private int dtbStrength = 15;
private DataSeries swingTrend;
//private Indicator.PriceActionSwingOscillator pasOsc;
#endregion

protected override void Initialize()
{
  BarsRequired = 0;
  CalculateOnBarClose = true;
  Enabled = false;

  swingTrend = new DataSeries(this);
}

protected override void OnStartUp()
{
  //pasOsc = PriceActionSwingOscillator(Input, dtbStrength, swingSize, swingType);
  //swingTrend = pasOsc.SwingTrend;

  swingTrend = PriceActionSwingOscillator(Input, dtbStrength, swingSize, swingType).SwingTrend;
}

protected override void OnBarUpdate()
{
  if (CurrentBar < 20)
    return;

  // For testing only
  //DrawText(CurrentBar + "Tag", swingTrend[0].ToString(), 0, Low[0] - 10 * TickSize, Color.Red);

if (Position.MarketPosition == MarketPosition.Flat)
{
if (swingTrend[0] == 1)
EnterLong();
if (swingTrend[0] == -1)
EnterShort();
}
else if (Position.MarketPosition == MarketPosition.Long)
{
if (swingTrend[0] != 1)
ExitLong();
}
else if (Position.MarketPosition == MarketPosition.Short)
{
if (swingTrend[0] != -1)
ExitShort();
}
}

Does anybody have an example of how this should be done in NT8? I can't seem to get it to compile no matter how I try. It keeps telling me that PriceActionSwingOscillator.Utility could not be found.

"the type or namespace name 'PriceActionSwingOscillator' could not be found."

Reply With Quote
  #1689 (permalink)
 
master trader's Avatar
 master trader 
Calgary AB, Canada
 
Experience: Master
Platform: NinjaTrader
Broker: Zen-Fire
Trading: CL, GC, ZB
Posts: 124 since Apr 2010
Thanks Given: 43
Thanks Received: 41


pnguyen720 View Post
Might I ask how are you using this indicator? The ABC entry? Divergence?


Ha ha...I thought I'm the only one who ever noticed that this PriceActionSwingProNT8

does not issue Signals. It only plots DT, DB, HH, LH, HL, LL...

I think the author "dorschden" said somewhere in this thread that he sent Big Mike updated version to upload to the forum. I can't see where Mike uploaded the new version. I want a version that plots ABC Signals. I don't use the indicator any other way

So, anyone who can get in touch with Big Mike, ask him to upload the updated version of PriceActionSwingProNT8. We need a version that issues ABC Signals. Many thanks folks.

Reply With Quote
  #1690 (permalink)
 
master trader's Avatar
 master trader 
Calgary AB, Canada
 
Experience: Master
Platform: NinjaTrader
Broker: Zen-Fire
Trading: CL, GC, ZB
Posts: 124 since Apr 2010
Thanks Given: 43
Thanks Received: 41



dorschden View Post
I'll fixed the code in a way that the divergence should work no matter how many bars are loaded. I have sent @Big Mike the updated version almost two weeks ago, but he didn't came around to upload it here in the forum until now. I can't upload a new version myself to the Free Section in the download area.


The above is the last post of "dorschden" (author of PriceActionSwingPro) on this thread. It is post #1440 and you will find it on this page



So, does anyone has the updated version of PriceActionSwingProNT8? I need a version that issues ABC Signals. I don't use the indicator any other way than plot ABC Signals in Market Analyzer OR call ABC Signals in Strategies. Can anyone who is in touch with Big Mike tell him to upload the updated version of PriceActionSwingProNT8. Thanks a million!

Reply With Quote




Last Updated on January 7, 2024


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts