NexusFi: Find Your Edge


Home Menu

 





ADXVMA Questions


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one Fat Tails with 12 posts (54 thanks)
    2. looks_two Big Mike with 8 posts (12 thanks)
    3. looks_3 syxforex with 7 posts (1 thanks)
    4. looks_4 Peter with 6 posts (7 thanks)
      Best Posters
    1. looks_one Fat Tails with 4.5 thanks per post
    2. looks_two RJay with 2.5 thanks per post
    3. looks_3 Big Mike with 1.5 thanks per post
    4. looks_4 Peter with 1.2 thanks per post
    1. trending_up 29,744 views
    2. thumb_up 88 thanks given
    3. group 16 followers
    1. forum 52 posts
    2. attach_file 12 attachments




 
Search this Thread

ADXVMA Questions

  #41 (permalink)
 
ThatManFromTexas's Avatar
 ThatManFromTexas 
Houston,Tx
 
Experience: Advanced
Platform: NinjaTrader
Broker: Mirus Futures/Zen-Fire
Trading: TF
Posts: 2,265 since Feb 2010
Thanks Given: 1,206
Thanks Received: 4,355


syxforex View Post
Keep an eye on the ram, it slowly creeps up, after an hour i get up to about a gig...

@syxforex @Fat Tails

I have been running four charts for the last hour ... no effect.

I'm just a simple man trading a simple plan.

My daddy always said, "Every day above ground is a good day!"
Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
ZombieSqueeze
Platforms and Indicators
Quant vue
Trading Reviews and Vendors
Better Renko Gaps
The Elite Circle
How to apply profiles
Traders Hideout
 
  #42 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103


syxforex View Post
Keep an eye on the ram, it slowly creeps up, after an hour i get up to about a gig...

I have opened a chart with Momentum bars, added the Universal Keltner with ADXVMA settings. I have then let it run for a few days via the Market Analyzer. There was no memory leak, but NinjaTrader used about 150 k for the entire period.

Your leak must be caused by something else.

Reply With Quote
  #43 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,463 since Jun 2009
Thanks Given: 33,239
Thanks Received: 101,661



syxforex View Post
Thanks,

I have directed my issue/bug reports to the adxvma questions thread. Not sure if I should move it to eman's Momentum Bars thread because I now think there is a conflict between the adxvma and the momentum bar type... thanks again

How about confining it to the original thread you created:



Instead of it being spread across multiple other threads.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #44 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103


Big Mike View Post
How about confining it to the original thread you created:



Instead of it being spread across multiple other threads.

Mike

@Big Mike: Thank you, did not see that thread. I have posted on that thread, the issue seems to be causing a memory leak on Big Mike's forum....

Reply With Quote
  #45 (permalink)
 
ThatManFromTexas's Avatar
 ThatManFromTexas 
Houston,Tx
 
Experience: Advanced
Platform: NinjaTrader
Broker: Mirus Futures/Zen-Fire
Trading: TF
Posts: 2,265 since Feb 2010
Thanks Given: 1,206
Thanks Received: 4,355


Fat Tails View Post
@Big Mike: Thank you, did not see that thread. I have posted on that thread, the issue seems to be causing a memory leak on Big Mike's forum....


@Fat Tails

I was going to say that ... but it leaked from my memory....

I'm just a simple man trading a simple plan.

My daddy always said, "Every day above ground is a good day!"
Reply With Quote
  #46 (permalink)
 syxforex 
British Columbia
 
Experience: Advanced
Platform: NINJA
Broker: ZEN
Trading: Crude
Posts: 1,091 since May 2010

48 hours in the the matrix of my memory.. sorry all

Visit my NexusFi Trade Journal Reply With Quote
  #47 (permalink)
 
Zondor's Avatar
 Zondor 
Portland Oregon, United States
 
Experience: Beginner
Platform: Ninjatrader®
Broker: CQG, Kinetick
Trading: Gameplay Klownbine® Trading of Globex
Posts: 1,333 since Jul 2009
Thanks Given: 1,246
Thanks Received: 2,731

I changed a couple of lines of code because I thought there might have been some kind of recursion. I was also having a memory leak when displaying paintbars. It's gone now but there were some other things that I also changed, so cannot be sure that this had actually been a problem. Thanks Harry, nice indicator.

 
Code
private Color               aBarColor;

OnStartUp()
...

aBarColor=Color.FromArgb(alpha, BarColor);
...

OnBarUpdate()
...
if(showPaintBars)
			{   if(priorTrendColor!=trendColor)
			   {   BarColor = trendColor;
				   CandleOutlineColor = trendColor;
			   }
				if(candles && Close[0] > Open[0])
					BarColor = aBarColor;
			}
...

Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #48 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103


Zondor View Post
I changed a couple of lines of code because I thought there might have been some kind of recursion. I was also having a memory leak when displaying paintbars. It's gone now but there were some other things that I also changed, so cannot be sure that this had actually been a problem. Thanks Harry, nice indicator.

 
Code
private Color               aBarColor;

OnStartUp()
...

aBarColor=Color.FromArgb(alpha, BarColor);
...

OnBarUpdate()
...
if(showPaintBars)
			{   if(priorTrendColor!=trendColor)
			   {   BarColor = trendColor;
				   CandleOutlineColor = trendColor;
			   }
				if(candles && Close[0] > Open[0])
					BarColor = aBarColor;
			}
...

@Zondor: Thank you for your diligence!

I had introduced the variable trendColor, which should be used in that line, aBarColor is therefore not required. It was just a slip of the pen, the correct code would be
 
Code
if(candles && Close[0] > Open[0])
    BarColor = Color.FromArgb(alpha, trendColor);

However, the bug would not have caused a memory leak. The only consequence of the bug was that every incoming tick would reduce the opacity of upclose paint bars, when the indicator was set to COBC = false. Nevertheless it was a bug, which should be removed.

BollingerUniversal and DonchianChannel suffered from the same problem (due to my habit to copy-and-paste), the SuperTrendU11, SuperTrendM11, Heikin-Ashi Paintbars, GannHiLoActivatorU1 and MACDUniversal had it already correct.

Reply With Quote
Thanked by:
  #49 (permalink)
 grimmer01 
Philadelphia, PA
 
Experience: Advanced
Platform: NinjaTrader
Trading: CL
Posts: 15 since Aug 2012
Thanks Given: 4
Thanks Received: 3

Hello All,
Thanks to everyone (especially Fat Tails) for their input on this Great Ninja Indicator. I've been using this indicator for a couple of weeks with some decent success, however, I would love to improve upon my results.

In conjunction with this indicator, i've been using RJay's RenkoHybrid Bars on a 12 tick setting (Thanks RJay, great Bars!!).

since RJay's Bars show the real time "highs and lows" and tails on the renko bars, i've adjusted my Reward to Risk ratio from 1:1 to 1:1.5 ( was using a +12 / -12 target/stop, but was getting stopped out quite a bit, then i started using a +12 / -18 Target/stop and have been having a much higher rate of Winning Trades. I know it's not ideal to have less than 1:1, but with "scalping", i've been having more success starting out at 1:1.5, and trailing my stop up as the price moves in my direction).

So, with RJay's RenkoHybrid 12 and the ADXVMA set to 9, and just going long when there are blue bars and exiting at a target of +12, and or exiting at -18 if i get stopped out, and going short on red bars and exiting at a target of +12, or exiting at a -18 stop:

here are my results from Mon 10/29 to Fri 11/9:

YM
23 Winners, 11 Losers, Win% = 68%, Total Ticks = 78/contract

NQ
23 Winners, 8 Losers, Win% = 74%, Total Ticks = 132/contract

CL
29 Winners, 17 Losers, Win% = 63%, Total Ticks = 42/conctract

Total Results:
75 Winners, 36 Losers (111 Total Trades in two weeks), Win% = 68%, Total Ticks = 252/contract.


I would love some feedback as to what other people are getting by using the ADXVMA in their trade strategy.

I'm also looking into using an RJay RenkoHybrid 8 and an ADXVMA 3 setting, will post results of manual backtesting in the next few days.

Reply With Quote
  #50 (permalink)
 
djkiwi's Avatar
 djkiwi 
Mercer Island WA
 
Experience: Advanced
Platform: Ninjatrader/Strategy Desk
Broker: Various
Trading: TF/NQ/ES/Stocks
Posts: 561 since May 2010
Thanks Given: 981
Thanks Received: 1,558



grimmer01 View Post
Hello All,
Thanks to everyone (especially Fat Tails) for their input on this Great Ninja Indicator. I've been using this indicator for a couple of weeks with some decent success, however, I would love to improve upon my results.

In conjunction with this indicator, i've been using RJay's RenkoHybrid Bars on a 12 tick setting (Thanks RJay, great Bars!!).

since RJay's Bars show the real time "highs and lows" and tails on the renko bars, i've adjusted my Reward to Risk ratio from 1:1 to 1:1.5 ( was using a +12 / -12 target/stop, but was getting stopped out quite a bit, then i started using a +12 / -18 Target/stop and have been having a much higher rate of Winning Trades. I know it's not ideal to have less than 1:1, but with "scalping", i've been having more success starting out at 1:1.5, and trailing my stop up as the price moves in my direction).

So, with RJay's RenkoHybrid 12 and the ADXVMA set to 9, and just going long when there are blue bars and exiting at a target of +12, and or exiting at -18 if i get stopped out, and going short on red bars and exiting at a target of +12, or exiting at a -18 stop:

here are my results from Mon 10/29 to Fri 11/9:

YM
23 Winners, 11 Losers, Win% = 68%, Total Ticks = 78/contract

NQ
23 Winners, 8 Losers, Win% = 74%, Total Ticks = 132/contract

CL
29 Winners, 17 Losers, Win% = 63%, Total Ticks = 42/conctract

Total Results:
75 Winners, 36 Losers (111 Total Trades in two weeks), Win% = 68%, Total Ticks = 252/contract.


I would love some feedback as to what other people are getting by using the ADXVMA in their trade strategy.

I'm also looking into using an RJay RenkoHybrid 8 and an ADXVMA 3 setting, will post results of manual backtesting in the next few days.

In my experience the problem with this indicator like most others is chop. You can do ok in a trending market but because markets don't trend 70-80% of the time it is difficult to be consistently profitable over the long term.

The trick with backtesting this is have a look at a chart and identify when the instrument is in a trend and when it is balanced.

Test it in both environments. You will see clearly the issues. The secret sauce is have a clear determination when the instrument you are trading is trending and when it isn't and becoming increasingly accurate in this determination. As you become better at this you will know the right time to deploy this indicator and your long term odds should improve.

Good luck
DJ

Reply With Quote
Thanked by:




Last Updated on October 2, 2013


© 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