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,637 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

  #1531 (permalink)
 
Silvester17's Avatar
 Silvester17 
Columbus, OH
Market Wizard
 
Experience: None
Platform: NT 8, TOS
Trading: ES
Posts: 3,603 since Aug 2009
Thanks Given: 5,139
Thanks Received: 11,527


sudhirc View Post
Hi,
In the above post (#1526) if you look at the second pics you see that i selected "tick" not Gann.

byi......what i'm trying to point out is, with NT7 indicator - it does exactly what i wanted to plot with closes(please refer to pic in the above post. I would like to see the same thing in NT8

I will include some additional pics to clarify what i'm trying to say.

Thank you,
Sudhir

Hope i'm clear

not sure either what the problem is. but on my end nt8 is using the close values:




but what's interesting, under swing values > volume, I can only use "absolute". if I select "relative", I get an overflow error message. if I remember correctly @dorschden had a modified version, but it never got updated. but not sure if that would solve the problem either.

Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
What broker to use for trading palladium futures
Commodities
Cheap historycal L1 data for stocks
Stocks and ETFs
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
About a successful futures trader who didnt know anythin …
Psychology and Money Management
 
  #1532 (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

@Silvester17

Thank you very much Silvester, I'm hoping that you would look this post. Great, this is what i'm looking for.

So now i know that is some thing on my end. I even deleted and re-installed the indicator without any success. Now i know what i will do this weekend

Hope the Volume issue gets fixed.

Thanks again,
Sudhir

Reply With Quote
Thanked by:
  #1533 (permalink)
 TraderMP 
Dallas, Texas
 
Experience: Intermediate
Platform: Tradestatrion, MT4
Trading: Emini NQ
Posts: 11 since Jun 2017
Thanks Given: 9
Thanks Received: 6


What is the most current version of the Price Action Swing indicator for NT8 and is it available in this thread?

Thanks in advance.

Mark

Reply With Quote
  #1534 (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

Its in download section


Reply With Quote
Thanked by:
  #1535 (permalink)
 hoolio 
Melbourne, Australia
 
Experience: Intermediate
Platform: NT8, Multicharts,Sierra
Broker: CQG, IB
Trading: YM,CL,GC,6E,6J
Posts: 97 since Mar 2013
Thanks Given: 85
Thanks Received: 60

I'm experiencing strange issues with the latest version (v20) in NT 8.0.9.

I get unhandled exception errors and I also lose the ability to change the text color displayed (it is always black no matter what I select for lower high, higher high etc).

In trying to track down why the error occurs it may be related to my Fuji Xerox printer that does not use "Courier" but instead Courier New. However, even if I change the indicator code from Courier to Courier New I still get the color display issue.

There is also one other anomaly that I can't figure out. If you clear the "label" field so that the indicator does not show its name and values at the top of your chart then the P A S does not have any name at all when you scroll through the indicators for that chart. Again, I have tried to track down what in the code can be replaced to correct this but I can't find it.

Anyone else experiencing any issues or have any suggestions on how to fix mine ?

Thanks in advance

Reply With Quote
  #1536 (permalink)
 GeorgeW 
London United Kingdom
 
Experience: Beginner
Platform: NinjaTrader
Trading: 6E
Posts: 44 since Dec 2014
Thanks Given: 4
Thanks Received: 29


hoolio View Post
I'm experiencing strange issues with the latest version (v20) in NT 8.0.9.

I get unhandled exception errors and I also lose the ability to change the text color displayed (it is always black no matter what I select for lower high, higher high etc).

In trying to track down why the error occurs it may be related to my Fuji Xerox printer that does not use "Courier" but instead Courier New. However, even if I change the indicator code from Courier to Courier New I still get the color display issue.

There is also one other anomaly that I can't figure out. If you clear the "label" field so that the indicator does not show its name and values at the top of your chart then the P A S does not have any name at all when you scroll through the indicators for that chart. Again, I have tried to track down what in the code can be replaced to correct this but I can't find it.

Anyone else experiencing any issues or have any suggestions on how to fix mine ?

Thanks in advance

Hi Hoolio,
I do not have a version number on my PAS indicator, just a date of 19-12-2016. Mine is working fine with NT8.0.9.0.

Regarding the name issue, you need to make adjustments to the set.State code as below to stop it from appearing on the chart but to still show up in the indicator list:
 
Code
protected override void OnStateChange()
		{
			if (State == State.SetDefaults)
			{
				Name			= "PriceActionSwing"; //Sets the name in the list of indicators - see State == State.DataLoaded for removing from chart
			}
			else if (State == State.DataLoaded)
			{
	            Name = ""; //See State == State.SetDefaults to set name so it appears in indicator list
			}
			
			
		}

Reply With Quote
Thanked by:
  #1537 (permalink)
 hoolio 
Melbourne, Australia
 
Experience: Intermediate
Platform: NT8, Multicharts,Sierra
Broker: CQG, IB
Trading: YM,CL,GC,6E,6J
Posts: 97 since Mar 2013
Thanks Given: 85
Thanks Received: 60

Thanks for the help.

My exception error may be due to another indicator that will be updated and hopefully resolved this week. I'll find out.

I tried your code snippets to see if I could get PriceActionSwing to remain named in the list of indicators but not on the chart but it didn't work for me

Reply With Quote
  #1538 (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


hoolio View Post
I'm experiencing strange issues with the latest version (v20) in NT 8.0.9.

I get unhandled exception errors and I also lose the ability to change the text color displayed (it is always black no matter what I select for lower high, higher high etc).

In trying to track down why the error occurs it may be related to my Fuji Xerox printer that does not use "Courier" but instead Courier New. However, even if I change the indicator code from Courier to Courier New I still get the color display issue.

There is also one other anomaly that I can't figure out. If you clear the "label" field so that the indicator does not show its name and values at the top of your chart then the P A S does not have any name at all when you scroll through the indicators for that chart. Again, I have tried to track down what in the code can be replaced to correct this but I can't find it.

Anyone else experiencing any issues or have any suggestions on how to fix mine ?

Thanks in advance

@hoolio, also been getting unhandled exception errors. Have not had time to do the research for which indicator since I use "too" many. Hopefully you have confirmed it here and I will try to also check it on my system.

P A S is one of my favorite indi's so I hope it can be corrected quickly.

Reply With Quote
  #1539 (permalink)
 GeorgeW 
London United Kingdom
 
Experience: Beginner
Platform: NinjaTrader
Trading: 6E
Posts: 44 since Dec 2014
Thanks Given: 4
Thanks Received: 29


hoolio View Post
Thanks for the help.

My exception error may be due to another indicator that will be updated and hopefully resolved this week. I'll find out.

I tried your code snippets to see if I could get PriceActionSwing to remain named in the list of indicators but not on the chart but it didn't work for me

Check this thread from NT Forum which confirms the approach I outlined.
Make sure you restore or remove and reapply the PAS indicator afterwards to get it to apply.

Reply With Quote
Thanked by:
  #1540 (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



dorschden View Post
The full PriceActionSwing package for NinjaTrader 8.0 is now ready. Thanks to @poncho there was already a version floating around. This version now also includes the PriceActionSwingPro next to the PriceActionSwing and the PriceActionSwingOsciliator.

I just sent Big Mike a message with the PriceActionSwing indicators for NT8, because I can't edit the indicator in the Free Section, so he needs to upload the indicator. He'll probably post a message here, when he uploaded the PriceActionSwing to the download section.

There are two things which I didn't convert. I didn't integrated the GUI elements for the statistic and the risk management features. I might add that within the next couple of weeks. The logic is already in the code. If you need the values you can add "Print"-statements in the code to send the values to the output window. And there is no support for any GomCD related stuff anymore. I might add something similar in the future as well, but no promise there. Every other feature is in there and should work like in NT7.


Thank you @dorschden for the great indicator.
I have been trying to set up a Market Analyzer with no success, Is there any change from NT7 version why you can not get the divergence signals plot from a Market Analyzer using NT8 version?
thank you very much

Follow me on Twitter Reply With Quote
Thanked by:




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