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 974,018 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

  #1321 (permalink)
 chewkee24 
Hopatcong, NJ, USA
 
Experience: None
Platform: Ninjatrader
Trading: Currency
Posts: 7 since Sep 2016
Thanks Given: 3
Thanks Received: 2


pepbosch View Post
Do you know if there is the PAS_PRO indicator version available yet for Ninjatrader 8 ?
thanks.

Not that I'm aware of, would be a nice to have tho...

Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
MC PL editor upgrade
MultiCharts
Exit Strategy
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
Better Renko Gaps
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Diary of a simple price action trader
26 thanks
Just another trading journal: PA, Wyckoff & Trends
24 thanks
Tao te Trade: way of the WLD
21 thanks
My NQ Trading Journal
16 thanks
HumbleTraders next chapter
9 thanks
  #1322 (permalink)
 chewkee24 
Hopatcong, NJ, USA
 
Experience: None
Platform: Ninjatrader
Trading: Currency
Posts: 7 since Sep 2016
Thanks Given: 3
Thanks Received: 2

PAS_PRO indicator version for Ninjatrader 8 available?

Also, an NT8 strategy to trade precisely at the moment of pivot? Even an outline of how to trade off of this indicator would be very helpful.

Anyone, come one, come all.

Also, I was reading posts about repainting, I'm sure sure what this is. All I know is repaints during choppiness, but I don't have a clear definition of "repaint". Does the Pro version help this? If so, how? Please enlighten me.

Does it revert back and stake a new entry point?

From a scalper's perspective, 100 tick candles, 7 period look back, how would it hurt to trade on every pivot?

The goal of the scalper would be not to trade during choppy periods to the best of his or her ability, but hypothetically isn't the scalper trading off relatively small losses in the anticipation of big gains by trading every pivot (Long-short, short-long)?

Thanks!!

Reply With Quote
  #1323 (permalink)
 dpkgpl91 
TrivandrumIndia
 
Experience: Intermediate
Platform: NinjaTrader
Trading: Nifty50
Posts: 1 since Aug 2016
Thanks Given: 0
Thanks Received: 0


Hi All,

I am trying to use PAS inside a custom indicator to change backcolor of chart based on whether the instrument is in an uptrend in higher time frames. Is it possible to pass on a user defined DataSeries object to PAS? Can someone please share a code snippet for the same?

Thanks,
Deepak

Reply With Quote
  #1324 (permalink)
 wandaria 
Brisbane, Queensland, Australia
 
Experience: Intermediate
Platform: ninja
Trading: dax
Posts: 6 since Feb 2016
Thanks Given: 0
Thanks Received: 1

folks I have the divergence indicator on false with the pas swing pro. Besides the retrace percentage, and entry percent allowance, what other criteria does the indicator use to determine the entry as obviously not all retrace legs show an entry on the specified retrace criteria.

thanks

Reply With Quote
  #1325 (permalink)
 
Ducman's Avatar
 Ducman 
The Netherlands
 
Experience: Intermediate
Platform: NinjaTrader 8
Broker: NINJATRADER Brokerage / Continuum
Trading: CL
Posts: 473 since Nov 2010
Thanks Given: 413
Thanks Received: 640

Hey folks,

I went through the the whole thread and want to try the indicator in one of my strategies. I think I followed all the required steps the get it to work but I get an error when I try to compile. The error is not new, I have seen different persons having the same issue. So far I could not find the solution, probably a simple thing.....

This is what I've done:

1. Download and imported the latest indicator package (no issue)
2. Using the indicators in charts (no issue)
3. Creating a simple strategy using declarations and variables from the given sample code

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
CODE

When I compile the code I get the following error messages based on the bold line items:

Error #1:
The type or namespace name 'PriceActionSwingOscillator' could not be found (are you missing a using directive or an assembly reference?)

Error #2:
The type or namespace name 'SwingTypes' could not be found (are you missing a using directive or an assembly reference?)

I've tried hard to solve it myself but I ran out of ideas. It's frustrating while I want to spend the time on learning the indicator instead.

Can anybody help me out.

Appreciate it,

Ducman

Visit my NexusFi Trade Journal Reply With Quote
  #1326 (permalink)
 
gregid's Avatar
 gregid 
Wrocław, Poland
 
Experience: Intermediate
Platform: NinjaTrader, Racket
Trading: Ockham's razor
Posts: 650 since Aug 2009
Thanks Given: 320
Thanks Received: 623

@Ducman
I have no experience with this indicator but my first question would be - NT7 or NT8 version?
Then the most likely place the error like this would arise is in the generated wrapper and these are generated from the accessors so that's where I would look for fix. As a first try I would try to instead of using "using" try putting direct full path to every use of the enum, especially around get/set at the bottom (eg. "PriceActionSwingOscillator.Utility.SwingTypes swingType") This should help the wrapper to avoid confusion.

Reply With Quote
  #1327 (permalink)
 
Ducman's Avatar
 Ducman 
The Netherlands
 
Experience: Intermediate
Platform: NinjaTrader 8
Broker: NINJATRADER Brokerage / Continuum
Trading: CL
Posts: 473 since Nov 2010
Thanks Given: 413
Thanks Received: 640

Still using NT7.

There are users of the indicator where the 'standard' way of coding works fine so it must have to do with the way my NT is organized on my computer or how the indicator has been imported? I did everything following the described examples but I can't get it to compile. I even tried to do it on a fresh istall of NT on another computer with the same result.

Will dig into it further.

Ducman

Visit my NexusFi Trade Journal Reply With Quote
  #1328 (permalink)
 zeller4 
Orlando Florida
 
Experience: Intermediate
Platform: NT8
Trading: CL, NQ, ES, RTY
Posts: 477 since Jun 2009
Thanks Given: 1,416
Thanks Received: 404

@Ducman,
I had to delete and/or rename the PriceActionSwingOscillator file I had because it didn't have the .Utility file with it... I found an older one with the .Utility in it - not sure where it came from ... I think the Download version didn't have the Utility.
Anyway, after deleting the old one, downloading and trying it again, it compiles and loads onto the chart.

HTH

Reply With Quote
  #1329 (permalink)
 
Ducman's Avatar
 Ducman 
The Netherlands
 
Experience: Intermediate
Platform: NinjaTrader 8
Broker: NINJATRADER Brokerage / Continuum
Trading: CL
Posts: 473 since Nov 2010
Thanks Given: 413
Thanks Received: 640


zeller4 View Post
@Ducman,
I had to delete and/or rename the PriceActionSwingOscillator file I had because it didn't have the .Utility file with it... I found an older one with the .Utility in it - not sure where it came from ... I think the Download version didn't have the Utility.
Anyway, after deleting the old one, downloading and trying it again, it compiles and loads onto the chart.

HTH

Thanks for your reply. The thing is that I have no older version of the indicator and imported the latest available package directly into NT. I have indeed the feeling that I miss a file but I'm not into C++ enough to understand what I miss.

Actually using the indicator directly in the chart is no problem, that works okay. It's only when I make a Strategy with this indicator that results in the compile error.

Can you look what files you have belonging to the PriceActionSwing indicator?

Thanks,

Ducman

Visit my NexusFi Trade Journal Reply With Quote
  #1330 (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,019



Ducman View Post
Thanks for your reply. The thing is that I have no older version of the indicator and imported the latest available package directly into NT. I have indeed the feeling that I miss a file but I'm not into C++ enough to understand what I miss.

Actually using the indicator directly in the chart is no problem, that works okay. It's only when I make a Strategy with this indicator that results in the compile error.

Ducman

@Ducman, are you writing the strategy or trying to use Strategy Wizard? If using SWizard, click on the view code button. It will open the code for editing. Then compile it and the error should show up.

Careful since editing the SW code will stop SW from editing it. But at least you can find out what is causing the error.

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