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 980,220 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

  #91 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

looks like a gatley

Attached Thumbnails
Click image for larger version

Name:	ES3M.png
Views:	4497
Size:	123.6 KB
ID:	15247  
Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
Cheap historycal L1 data for stocks
Stocks and ETFs
ZombieSqueeze
Platforms and Indicators
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
use extra computer for optimisation
NinjaTrader
 
  #92 (permalink)
 wgreenie 
Cambridge, Ontario
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Zen-Fire
Trading: 6E
Posts: 1,778 since Dec 2009
Thanks Given: 1,258
Thanks Received: 1,203

Hi Cory

Your "Clock Timer" indicator looks interesting. How does it work and where can I find it please? Thank you.

Beth

Visit my NexusFi Trade Journal Reply With Quote
  #93 (permalink)
 wgreenie 
Cambridge, Ontario
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Zen-Fire
Trading: 6E
Posts: 1,778 since Dec 2009
Thanks Given: 1,258
Thanks Received: 1,203


Hi Dorschden

I really like your PA Swing indicators!!

I'm playing with it to create a DT/DB strategy, ie replacing the suggested code "PriceSwingRelation" with "DoubleBottom" and "DoubleTop". Instead of triggering minimal trades based on DoubleBottom and DoubleTop, lots of other trades were triggered!? Guess I must have coded it wrong and appreciate your guidance. Thank you.

Beth


 
Code
if (PriceActionSwing(calcMode, calcSize, dtbStrength, psarAcceleration, psarAccelerationMax, 
psarAccelerationStep).DoubleBottom[0] >0)
{
debug ("Entering Long");
EnterLong(longEntryID);
DrawArrowUp("Long" + CurrentBar, true, 0, Low[0] - (4*TickSize), Color.Lime);
}


Visit my NexusFi Trade Journal Reply With Quote
  #94 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090


wgreenie View Post
Hi Cory

Your "Clock Timer" indicator looks interesting. How does it work and where can I find it please? Thank you.

Beth

the top line is a normal clock , the second line count time the time remain of a time bar you can adjust the font for them separately

Attached Files
Elite Membership required to download: clocktimer.zip
Reply With Quote
  #95 (permalink)
 wgreenie 
Cambridge, Ontario
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Zen-Fire
Trading: 6E
Posts: 1,778 since Dec 2009
Thanks Given: 1,258
Thanks Received: 1,203


cory View Post
the top line is a normal clock , the second line count time the time remain of a time bar you can adjust the font for them separately

Thanks Cory for your swift sharing of the Clock Timer indicator!!

Beth

Visit my NexusFi Trade Journal Reply With Quote
  #96 (permalink)
 dorschden 
Germany
 
Experience: Master
Platform: NinjaTrader
Posts: 112 since Jun 2009
Thanks Given: 59
Thanks Received: 1,144


cory View Post
looks like a gatley

Hey Cory,

it's almost a perfect gartley, but I think the first swing low have to be lower as the second one. Anyway you make some $ with it

I automate some pattern recognition with the PAS indicator. I really like to trade pattern like this one. Maybe I make the pattern recognition public, but for now I'm not sure about this.

dorschden

Started this thread Reply With Quote
  #97 (permalink)
 dorschden 
Germany
 
Experience: Master
Platform: NinjaTrader
Posts: 112 since Jun 2009
Thanks Given: 59
Thanks Received: 1,144


wgreenie View Post
I'm playing with it to create a DT/DB strategy, ie replacing the suggested code "PriceSwingRelation" with "DoubleBottom" and "DoubleTop". Instead of triggering minimal trades based on DoubleBottom and DoubleTop, lots of other trades were triggered!? Guess I must have coded it wrong and appreciate your guidance.

Hey Beth,

you must agian use the "PriceSwingRelation" and test if the value is "2" for a double bottom. You can then immediately enter the trade or you can wait until the double bottom is finished. For this you have to check for an upflip. Double top: "PriceSwingRelation[0] == -2" and "DnFlip[0] == true".
See the following code for a double bottom (not tested, but should work).

dorschden

 
Code
                            
if (PriceActionSwing(calcModecalcSizedtbStrengthpsarAcceleration,

    
psarAccelerationMaxpsarAccelerationStep).PriceSwingRelation[0] == 
    
&& PriceActionSwing(calcModecalcSizedtbStrengthpsarAcceleration,
    
psarAccelerationMaxpsarAccelerationStep).UpFlip[0] == true)
{
  
debug ("Entering Long");
  
EnterLong(longEntryID);
  
DrawArrowUp("Long" CurrentBartrue0Low[0] - (4*TickSize), Color.Lime);


Started this thread Reply With Quote
Thanked by:
  #98 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090


dorschden View Post
Hey Cory,

it's almost a perfect gartley, but I think the first swing low have to be lower as the second one. Anyway you make some $ with it

I automate some pattern recognition with the PAS indicator. I really like to trade pattern like this one. Maybe I make the pattern recognition public, but for now I'm not sure about this.

dorschden

i just eyeball them any pattern with 2 triangle looks like a gatley to me, here is one use fib ext, trigger a long when it passes 38%

Attached Thumbnails
Click image for larger version

Name:	es3m_001.png
Views:	819
Size:	107.2 KB
ID:	15252  
Reply With Quote
Thanked by:
  #99 (permalink)
 wgreenie 
Cambridge, Ontario
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Zen-Fire
Trading: 6E
Posts: 1,778 since Dec 2009
Thanks Given: 1,258
Thanks Received: 1,203


dorschden View Post
Hey Beth,

you must agian use the "PriceSwingRelation" and test if the value is "2" for a double bottom. You can then immediately enter the trade or you can wait until the double bottom is finished. For this you have to check for an upflip. Double top: "PriceSwingRelation[0] == -2" and "DnFlip[0] == true".

Thanks Dorschden! I tried PriceSwingRelation[0] == -2/2 before the DoubleTop/DoubleBottom attempt. Did not work the way I wanted. Maybe the UpFlip/DnFlip will do the trick. I will try again. My trilion .. trillion .. thanks again for your super-mega prompt response.

Beth (grateful)

Visit my NexusFi Trade Journal Reply With Quote
  #100 (permalink)
 wgreenie 
Cambridge, Ontario
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Zen-Fire
Trading: 6E
Posts: 1,778 since Dec 2009
Thanks Given: 1,258
Thanks Received: 1,203


Hi Dorschden

Just a crispy note confirming your suggested code works like magic (as always)! Thank you.

Beth

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