NexusFi: Find Your Edge


Home Menu

 





Double bottom and Double top with DIV


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one benbrooke with 18 posts (1 thanks)
    2. looks_two cory with 8 posts (3 thanks)
    3. looks_3 max-td with 2 posts (0 thanks)
    4. looks_4 vast with 2 posts (0 thanks)
    1. trending_up 30,098 views
    2. thumb_up 5 thanks given
    3. group 12 followers
    1. forum 36 posts
    2. attach_file 15 attachments




 
Search this Thread
  #21 (permalink)
 
benbrooke's Avatar
 benbrooke 
Dallas,tx
 
Experience: Advanced
Platform: Market Delta
Broker: Velocity /TT
Trading: ES
Posts: 430 since Aug 2009
Thanks Given: 216
Thanks Received: 490

its a modified version of the d3spotter you can change the code to use d3spotter


Keep on sowing your seed, for you never know which will grow -- perhaps it all will.

-- Albert Einstein
Visit my NexusFi Trade Journal Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
TradingView Opens Volume Footprint Data to Pine Script - …
TradingView
BofA Projects $1.1 Trillion in Sports Event Contracts -- …
Prediction Markets & Event Contracts
NYSE Owner ICE Invests in Crypto Exchange OKX at $25 Bil …
Cryptocurrency
The Backwardation Signal: How the CL Futures Curve Tells …
Commodities
Cboe Launches BITVX Bitcoin Volatility Index and Unveils …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
21 thanks
2026 Jlab journal
10 thanks
Trying to learn Volume and price action correlation
8 thanks
Algo automated / semi-automated trading anyone?
6 thanks
Lady Vols Primer: Trading Volatility Journal
5 thanks
  #22 (permalink)
 
benbrooke's Avatar
 benbrooke 
Dallas,tx
 
Experience: Advanced
Platform: Market Delta
Broker: Velocity /TT
Trading: ES
Posts: 430 since Aug 2009
Thanks Given: 216
Thanks Received: 490

can some one tell me how to refer to event that happen in the last 20 bar
what i am trying to do is to check if all of the 3 steps happen in the last 20 Bars and if so i will like to plot an arrow

thanks

ben,


Keep on sowing your seed, for you never know which will grow -- perhaps it all will.

-- Albert Einstein
Visit my NexusFi Trade Journal Started this thread Reply With Quote
  #23 (permalink)
 
max-td's Avatar
 max-td 
Frankfurt
 
Experience: Intermediate
Platform: NinjaTrader
Trading: FGBL 6E B4
Posts: 1,752 since Jun 2009
Thanks Given: 2,309
Thanks Received: 927


hi ben,
what kind of event do you mean ?


max-td
Reply With Quote
  #24 (permalink)
 
vast's Avatar
 vast 
Australia
 
Experience: Intermediate
Platform: Ninja
Posts: 167 since Jun 2009
Thanks Given: 154
Thanks Received: 62

Ben it looks like you have altered a fair bit of the D3SpotterV2. As in removed a number of the settings.
I have been playing around with the original and will not load. Looks like I need to remove the alerts and few other things


Reply With Quote
  #25 (permalink)
 
benbrooke's Avatar
 benbrooke 
Dallas,tx
 
Experience: Advanced
Platform: Market Delta
Broker: Velocity /TT
Trading: ES
Posts: 430 since Aug 2009
Thanks Given: 216
Thanks Received: 490

i will like to check the that we had divergence then Double top/Bottom and if we breaking the pivot i will want to buy/sell

now i tried to program that but i can do only if all happen at the same time which we know that non of this will happen at the same bar


Keep on sowing your seed, for you never know which will grow -- perhaps it all will.

-- Albert Einstein
Attached Thumbnails
Click image for larger version

Name:	7th.png
Views:	450
Size:	98.8 KB
ID:	8138  
Visit my NexusFi Trade Journal Started this thread Reply With Quote
  #26 (permalink)
 
max-td's Avatar
 max-td 
Frankfurt
 
Experience: Intermediate
Platform: NinjaTrader
Trading: FGBL 6E B4
Posts: 1,752 since Jun 2009
Thanks Given: 2,309
Thanks Received: 927

i see, thats much - sounds like a comlplete system.
i thought you go for an indicator.
the entry at break pivot - i have no fast idea.

but the DV basicly are calculated with the swing-indie.
and if you have to compare swing-values - you use iE a longer + a shorter swing () to compare + their values stay as long stable + same as a new one builds out - no matter how many bars further you are.

hope that makes sense


max-td
Reply With Quote
  #27 (permalink)
 
cory's Avatar
 cory 
virginia
the coin hunter
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,093


benbrooke View Post
can some one tell me how to refer to event that happen in the last 20 bar
what i am trying to do is to check if all of the 3 steps happen in the last 20 Bars and if so i will like to plot an arrow

thanks

ben,

-on the first event happens you save bar_value = CurrentBar

-on the third event you check for CurrentBar <= bar_value + 20


Reply With Quote
  #28 (permalink)
 
benbrooke's Avatar
 benbrooke 
Dallas,tx
 
Experience: Advanced
Platform: Market Delta
Broker: Velocity /TT
Trading: ES
Posts: 430 since Aug 2009
Thanks Given: 216
Thanks Received: 490

Cory

thanks for your replay

can you show me an example how to do it

Thanks

Ben


Keep on sowing your seed, for you never know which will grow -- perhaps it all will.

-- Albert Einstein
Visit my NexusFi Trade Journal Started this thread Reply With Quote
  #29 (permalink)
 
cory's Avatar
 cory 
virginia
the coin hunter
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,093


benbrooke View Post
Cory

thanks for your replay

can you show me an example how to do it

Thanks

Ben

 
Code
 #region Variables
.....

private int bar_even1 = 0;

...
        #endregion
 
Code
			if (T1)      // even 1?
			{
			DrawDot("My dot" + CurrentBar, false, 0, Close[0], Color.Green);
                        bar_even1 = CurrentBar;
			}	

......
			if (T3)  // even 3
			{
                         if (bar_even1  + 20 >  Currentbar )  // happens with 20 bar counting from even 1                               
			DrawDot("My dot" + CurrentBar, false, 0, Close[0], Color.Green);
			}


Reply With Quote
Thanked by:
  #30 (permalink)
 
benbrooke's Avatar
 benbrooke 
Dallas,tx
 
Experience: Advanced
Platform: Market Delta
Broker: Velocity /TT
Trading: ES
Posts: 430 since Aug 2009
Thanks Given: 216
Thanks Received: 490


Cory YOU ROCK!!!


Keep on sowing your seed, for you never know which will grow -- perhaps it all will.

-- Albert Einstein
Visit my NexusFi Trade Journal Started this thread Reply With Quote




Last Updated on December 6, 2011


© 2026 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 - Downloads - Top
no new posts