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,125 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 978,337 views
    2. thumb_up 2,948 thanks given
    3. group 613 followers
    1. forum 2,093 posts
    2. attach_file 615 attachments




 
Search this Thread

PriceActionSwing discussion

  #1631 (permalink)
 ShatteredX 
Houston, TX
 
Experience: Intermediate
Platform: Python
Trading: NQ
Posts: 97 since Apr 2016
Thanks Given: 133
Thanks Received: 96

Has anyone else tried calling PriceActionSwingPro in a strategy in the strategy analyzer in NT 7? I have a strategy that uses it successfully in live sim and market replay, but it generates no trades in the strategy analyzer. Just curious if that's a known issue.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
What broker to use for trading palladium futures
Commodities
About a successful futures trader who didnt know anythin …
Psychology and Money Management
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
How to apply profiles
Traders Hideout
Trade idea based off three indicators.
Traders Hideout
 
  #1632 (permalink)
 jmont1 
New York, NY
 
Experience: Intermediate
Platform: NinjaTrader8
Broker: Data = Rithmic -- Gives 70 Level II Data
Trading: 6C (Low Margin,) 6E, CL, GC, ES and Maybe DX for smaller tick value
Posts: 1,394 since May 2011
Thanks Given: 1,719
Thanks Received: 1,020


ShatteredX View Post
Has anyone else tried calling PriceActionSwingPro in a strategy in the strategy analyzer in NT 7? I have a strategy that uses it successfully in live sim and market replay, but it generates no trades in the strategy analyzer. Just curious if that's a known issue.

@ShatteredX, first time I have heard this comment. I thought PAS was not really usable since it was not working in replay. May I request you share a working version here or in the strategy thread so we can take a look at it:


NJAMC View Post
Please consider this thread public and strategies developed based upon requests will be released to this thread (and maybe download section if applicable). If there is a special need or a privacy request, you can PM me and others as you have been doing, but I would encourage the coders to refer you back to this thread if it isn't novel in approach or application.


Reply With Quote
  #1633 (permalink)
 ShatteredX 
Houston, TX
 
Experience: Intermediate
Platform: Python
Trading: NQ
Posts: 97 since Apr 2016
Thanks Given: 133
Thanks Received: 96



jmont1 View Post
@ShatteredX, first time I have heard this comment. I thought PAS was not really usable since it was not working in replay. May I request you share a working version here or in the strategy thread so we can take a look at it:

It only takes a few lines to produce a basic strategy based on the ABC signals of PriceActionSwingPro. It works in simulation and market replay anyway, not Strategy Analyzer (yet).

For NT 7:

Add this to your declarations up top:
 
Code
#region Using declarations
using PriceActionSwing.Base;
#endregion
Add the indicator to Initialize (sometimes it doesn't work without this, maybe a more experienced coder can explain why?):
 
Code
Add(PriceActionSwingPro(20, 7, SwingStyle.Standard, false));
Here is your order entry setup:
 
Code
if (PriceActionSwingPro(20,7, SwingStyle.Standard, false).AbcSignals[0] == 2)
		EnterLong();
if (PriceActionSwingPro(20,7, SwingStyle.Standard, false).AbcSignals[0] == -2)
		EnterShort();
The only thing missing here would be your stop loss and take profit orders. The easiest way I could think of was to edit the PASPro indicator and add a public data series for each (exactly how AbcSignals is already included). If you search the indicator for "abcSignals.Set(2)", you can see where to grab the stop and target.

I may post an actual strategy in the strategy thread but I'd like to get everything working properly first.

Reply With Quote
Thanked by:
  #1634 (permalink)
 jmont1 
New York, NY
 
Experience: Intermediate
Platform: NinjaTrader8
Broker: Data = Rithmic -- Gives 70 Level II Data
Trading: 6C (Low Margin,) 6E, CL, GC, ES and Maybe DX for smaller tick value
Posts: 1,394 since May 2011
Thanks Given: 1,719
Thanks Received: 1,020


ShatteredX View Post
It only takes a few lines to produce a basic strategy based on the ABC signals of PriceActionSwingPro. It works in simulation and market replay anyway, not Strategy Analyzer (yet).

For NT 7:

Add this to your declarations up top:
 
Code
#region Using declarations
using PriceActionSwing.Base;
#endregion
Add the indicator to Initialize (sometimes it doesn't work without this, maybe a more experienced coder can explain why?):
 
Code
Add(PriceActionSwingPro(20, 7, SwingStyle.Standard, false));
Here is your order entry setup:
 
Code
if (PriceActionSwingPro(20,7, SwingStyle.Standard, false).AbcSignals[0] == 2)
		EnterLong();
if (PriceActionSwingPro(20,7, SwingStyle.Standard, false).AbcSignals[0] == -2)
		EnterShort();
The only thing missing here would be your stop loss and take profit orders. The easiest way I could think of was to edit the PASPro indicator and add a public data series for each (exactly how AbcSignals is already included). If you search the indicator for "abcSignals.Set(2)", you can see where to grab the stop and target.

I may post an actual strategy in the strategy thread but I'd like to get everything working properly first.

@ShatteredX, THanks! Any update on posting your strategy?

Reply With Quote
  #1635 (permalink)
 Guss   is a Vendor
 
Posts: 138 since Aug 2011
Thanks Given: 60
Thanks Received: 86

Hi,
is it possible to have priceactionswing to draw the swing volume as separate indicator window similar to/ weiswave(attached chart)
I am aware I can chose the zigzag volume swing, but I am looking for clearer visual swing volume bars

Any feedback is appreciate

Attached Thumbnails
Click image for larger version

Name:	Screen Shot 2018-06-05 at 5.11.54 PM.png
Views:	247
Size:	1.10 MB
ID:	250474  
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #1636 (permalink)
 steven2 
Vancouver Canada
 
Experience: Intermediate
Platform: NinjaTrader 7
Trading: Emini
Posts: 30 since Dec 2015
Thanks Given: 40
Thanks Received: 25

Trying to develop an indicator that calls PriceActionSwing (NT7). I am running into all kinds of problem as the code has changed over time, and I no longer can figure out what works. Could someone please post a barebones indicator calling PriceActionSwing (again, NT7).

I really appreciate.

Reply With Quote
  #1637 (permalink)
 
sudhirc's Avatar
 sudhirc 
detroit,mi
sc
 
Experience: Intermediate
Platform: NT
Broker: NT
Trading: ES
Frequency: Every few months
Duration: Hours
Posts: 417 since Sep 2011
Thanks Given: 1,709
Thanks Received: 471


Guss View Post
Hi,
is it possible to have priceactionswing to draw the swing volume as separate indicator window similar to/ weiswave(attached chart)
I am aware I can chose the zigzag volume swing, but I am looking for clearer visual swing volume bars

Any feedback is appreciate


@Guss

Yes when you install PriceActionSwing indicator you get PriceActionSwingOscillator which will plot swing volume bar on a seperate screen - check out the link


Reply With Quote
Thanked by:
  #1638 (permalink)
 Guss   is a Vendor
 
Posts: 138 since Aug 2011
Thanks Given: 60
Thanks Received: 86


sudhirc View Post
@Guss

Yes when you install PriceActionSwing indicator you get PriceActionSwingOscillator which will plot swing volume bar on a seperate screen - check out the link


Thanks, but it seems it only shows they swings visualization, , not the swing volume or am I missing something?

Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #1639 (permalink)
 
sudhirc's Avatar
 sudhirc 
detroit,mi
sc
 
Experience: Intermediate
Platform: NT
Broker: NT
Trading: ES
Frequency: Every few months
Duration: Hours
Posts: 417 since Sep 2011
Thanks Given: 1,709
Thanks Received: 471

@Guss
Swing vol is shows on the PriceActionSwingPro indicator on price screen. Attached pic, hope that is what you are looking for.

Attached Thumbnails
Click image for larger version

Name:	Dfkkyl0WAAY1Jnm.png
Views:	229
Size:	43.2 KB
ID:	250762  
Reply With Quote
Thanked by:
  #1640 (permalink)
 Guss   is a Vendor
 
Posts: 138 since Aug 2011
Thanks Given: 60
Thanks Received: 86



sudhirc View Post
@Guss
Swing vol is shows on the PriceActionSwingPro indicator on price screen. Attached pic, hope that is what you are looking for.

Thanks much appreciated.

Do you have close values checked??
Does it Mach Wies volume indicator if you had compared it to in the past?
Thanks again for your feedback

Follow me on Twitter Visit my NexusFi Trade Journal 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