07/04/2010 21:05:28
 forum Administrator Posts: 387
|
Hi Michael That’s a new one I would be interested to see an example or demo and then I may be able to assist in the choice of that technology. With regards to the MicroTrends.NinjaTraderFramework Version 1.0.1.6 has just been released http://www.micro-trends.co.uk/downloads/bin/ In the forum there is sample code showing public exposed methods you can hook to process a signal. SignalLong SignalShort SignalExit There is also a dataseries which can be read: currentbar SignalsLong[0] SignalsShort[0] SignalsExit[0] http://www.micro-trends.co.uk/forum/default.aspx Code Example: if(MicroTrendsExtremeSS(0,-100,10,100,0,0,50,15,30,7,14,85,70,3,20,13,0,3,26,2,2.5,14).SignalLong) { EnterLong(); } if(MicroTrendsExtremeSS(0,-100,10,100,0,0,50,15,30,7,14,85,70,3,20,13,0,3,26,2,2.5,14).SignalShort) { EnterShort(); } if(MicroTrendsExtremeSS(0,-100,10,100,0,0,50,15,30,7,14,85,70,3,20,13,0,3,26,2,2.5,14).SignalExit) { ExitLong(); ExitShort(); } Does this help?
|