NexusFi: Find Your Edge


Home Menu

 





NT7 programming - reset value of a variable at each bar


Discussion in NinjaTrader

Updated
    1. trending_up 1,336 views
    2. thumb_up 2 thanks given
    3. group 1 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread

NT7 programming - reset value of a variable at each bar

  #1 (permalink)
 
adamov's Avatar
 adamov 
Budapest, Hungary
 
Experience: None
Platform: ninjatrader
Trading: FGBL / FESX / ES / ZN / ZB
Posts: 84 since Jun 2012
Thanks Given: 37
Thanks Received: 49

Hi

I have a continuous tick by tick calculation. I need the changes of its value on each bar. I need a dataseries of them to make calculations.

I tried to reset the value with FirstTickOfBar. But sometimes it seems to ignore this part and adds the change to the value of the previous bar.
Could you tell me what is the problem or suggest any other solution to get the changes in value?

 
Code
		protected override void OnBarUpdate()
		{
			totalvol = totalvol + eVol;
			totalvolplot.Set(totalvol);	
			if(FirstTickOfBar)
			{
				totalvol = eVol;
			}
				
		}
				
		
		protected override void OnMarketData(MarketDataEventArgs e)
		{
			
			//Set AskPrice
			if(e.MarketDataType == MarketDataType.Ask)
			{
				AskPrice = e.Price;
			}
			
			//Set BidPrice
			if(e.MarketDataType == MarketDataType.Bid)
			{
				BidPrice = e.Price;
			}
			
			//Trade calculations done on incoming trade data
			if (e.MarketDataType == MarketDataType.Last)
			{
						
			//Buys calculations
				if(e.Price >= AskPrice)
				{
					eVol = e.Volume;
				}
		
				//Sells calculations
				if(e.Price <= BidPrice)
				{
					eVol = e.Volume;
				}
			}
		}

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Cheap historycal L1 data for stocks
Stocks and ETFs
ZombieSqueeze
Platforms and Indicators
What broker to use for trading palladium futures
Commodities
MC PL editor upgrade
MultiCharts
Better Renko Gaps
The Elite Circle
 
  #2 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,426

 
Code
protected override void OnBarUpdate()
		{
			if(FirstTickOfBar)
	 		{
				totalvol = eVol;
			}
			else
			{
				totalvol = totalvol + eVol;
			}
				
			totalvolplot.Set(totalvol);	
		}
I would usually keep all summation calcs inside the OMD routine and only do a zero reset inside OnBarUpdate but try that instead.

Cheers

Travel Well
Visit my NexusFi Trade Journal Reply With Quote
Thanked by:




Last Updated on March 7, 2016


© 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