PDA

View Full Version : Last Trade Data


MindSabre
04-28-2007, 11:04 PM
Hi,

I'm a bit new at NinjaScript so please forgive if this is a stupid question. (i do have some .NET programming experience)

Is there any class/object providing info (entry price, exit price, profit/loss, time. etc. etc.) about specific trades?

For example, unsing NinjaScripthow would I determine if the previous trade of the day was a winner or loser?

I came across this requirement while trying to convert some of my EasyLanguage code to NinjaScript.

Any response much appreciated.

Regards,



Jerry

NinjaTrader_Dierk
04-28-2007, 11:43 PM
>> Is there any class/object providing info (entry price, exit price, profit/loss, time. etc. etc.) about specific trades?

You could try playing with a 1 tick series which holds all trades of the complete lookback period

>> For example, unsing NinjaScripthow would I determine if the previous trade of the day was a winner or loser?

StrategyBase.Performance.AllTrades is a collection of all trades of the strategy (pls serach docs for AllTrades).

MindSabre
04-29-2007, 12:33 AM
Thanks for the response.

>>StrategyBase.Performance.AllTrades is a collection of all trades of the strategy (pls serach docs for AllTrades).


Yes, but how does one reference individual trades in the collection and expose its properties?

NinjaTrader_Dierk
04-29-2007, 12:45 AM
Sorry, indexed access it not supported at this time. This is "only" an enumerator.