NexusFi: Find Your Edge


Home Menu

 





NT7 programming - reset value of a variable at each bar


Discussion in NinjaTrader

Updated
    1. trending_up 1,860 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?
Iran Fired a Missile at Israel Last Night. The $8M June …
Prediction Markets & Event Contracts
Irans Dual Probability: Guns Quiet at 99.95% While Forma …
Prediction Markets & Event Contracts
Fabrication or Framework? Irans Denied MOU Explains the …
Prediction Markets & Event Contracts
Thanks Mike. Godspeed.
The Elite Circle
Strike Pause Holds, Oil Erases Monday Spike -- May CPI W …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
10 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 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,427

 
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