Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Delta Buy/Sell Volume
Collapse
X
-
I downloaded the latest version, but im unsure as to what i have to do to make it so that the data isn't lost when i change the chart, like add a moving average or something.
-
You can add your code in ProcessDelta, which processes the real time ticks and the historical read ticks.Originally posted by subterfuge View PostI downloaded the latest version, but im unsure as to what i have to do to make it so that the data isn't lost when i change the chart, like add a moving average or something.
Comment
-
Sorry, made a regression in 2.5, the indic couldn't create a file from scratch. This one correct the problemAttached Files
Comment
-
Hi Gomi, thanks for the improvements, i ask u if is possible add a choise for up down ticks instead bid ask, to use it with forex data.Originally posted by gomifromparis View PostSorry, made a regression in 2.5, the indic couldn't create a file from scratch. This one correct the problem
Thanks.
Lubo.
Comment
-
What's the exact rule for calculation with up/down ticks ?Originally posted by LuboLabo View PostHi Gomi, thanks for the improvements, i ask u if is possible add a choise for up down ticks instead bid ask, to use it with forex data.
Thanks.
Lubo.
EDIT : IMHO in Forex there is no centralized exchange so no useful volume information. And if you're trading forex futures, you've got bid/ask I suppose ?Last edited by gomifromparis; 04-08-2009, 03:08 AM.
Comment
-
Here's the 3.0 indicator, compliant with GomRecorder framework (see http://www.ninjatrader-support2.com/...ad.php?t=16006 )
You'll see small differences with previous versions due to changes in how bid>=ask situations are managed. In fact now they are managed.
Here's a picture of 2.5 version with new version using Flat file format and new version using Short file format.
Enjoy !
Comment
-
I'm trading forex spot, tick volume is useful, the difference is that there's no contract volume, but ticks to build spot volume, i think for delta calculation u use difference between ask bid contract volume or number of trades(tell me if i'm wrong), in forex should be used tick up down difference for calcution of delta.Originally posted by gomifromparis View PostWhat's the exact rule for calculation with up/down ticks ?
EDIT : IMHO in Forex there is no centralized exchange so no useful volume information. And if you're trading forex futures, you've got bid/ask I suppose ?
Thanks.
Lubo.
Comment
-
Hi,
A simple approach to uptick/downtick might be;
if(Close[0] > lastPrice) up = true;
if(Close[0] < lastPrice) up = false;
lastPrice = Close[0];
although I have seen;
if(ask > lastAsk) up = true;
if(bid < lastBid) up = false;
lastAsk = Ask;
lastBid = Bid;
using either OnMarketDataEventArgs or OnBarUpdate GetCurrentAsk method to populate Ask and Bid.
Personally I prefer the first approach as it is a more accurrate reflection of buyer/seller momentum (the ability of either to keep prices moving in their direction regardless of counter pressure exerted as reflected by Bid/Ask transactions.
Comment
-
Comment
-
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
574 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment