NexusFi: Find Your Edge


Home Menu

 





NT7 programming - reset value of a variable at each bar


Discussion in NinjaTrader

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




 
Search this Thread
  #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?
Probability Collapse: Bitcoin $150k Craters from 15% to …
Prediction Markets & Event Contracts
March Jobs Report Update: 178K Beat vs 59K Expected, Wag …
Traders Hideout
Oil Surges ~18% in One Week as Iran Conflict Disrupts Gl …
Commodities
Five Days Until the Gap Dies -- CME Goes 24/7 on All Dig …
Traders Hideout
UCL Final Kicks Off at Noon ET: PSG at 56.5% as Iran May …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
24 thanks
2026 Jlab journal
10 thanks
Lady Vols Primer: Trading Volatility Journal
7 thanks
Algo automated / semi-automated trading anyone?
6 thanks
Trying to learn Volume and price action correlation
5 thanks
  #2 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,550 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,430

 
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


© 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