NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 63
Search: Posts Made By: kandlekid
Forum: NinjaTrader July 16th, 2014, 12:49 AM
Replies: 295
Views: 130,196
Posted By kandlekid
Maybe, but I think that's the worst time to ship...

Maybe, but I think that's the worst time to ship an app (when the OS changes). I suspect the windoze release has nothing to do with the NT release date. They'll ship it when they're confident...
Forum: NinjaTrader September 18th, 2013, 11:06 PM
Replies: 3
Views: 1,175
Posted By kandlekid
I think you want to use the iOrder object. ...

I think you want to use the iOrder object. See the NT 7 manual. Here's what you could do ...

private IOrder iOrder = null;

...

iOrder = EnterShortStopLimit( ... );

if (...
Forum: NinjaTrader September 15th, 2013, 09:50 PM
Replies: 5
Views: 1,656
Posted By kandlekid
For the audio part, I think you just need to...

For the audio part, I think you just need to record a wav file with your alert, then call the Ninja function PlaySound. You can find it in the Ninja 7 manual under Alert & Debug.
Forum: NinjaTrader August 15th, 2013, 12:25 AM
Replies: 3
Views: 1,596
Posted By kandlekid
To me it looks like you're giving ToTime a...

To me it looks like you're giving ToTime a boolean rather than a DateTime. But that doesn't seem to be reflected in the error message, so maybe I'm wrong :(
Forum: NinjaTrader August 13th, 2013, 02:23 AM
Replies: 3
Views: 1,442
Posted By kandlekid
Maybe I'm missing something, but if you remove...

Maybe I'm missing something, but if you remove the HA indicator, doesn't it just revert to a simple candlestick chart ?
Forum: NinjaTrader August 13th, 2013, 01:56 AM
Replies: 2
Views: 2,036
Posted By kandlekid
I think your problem is that Initalize is only...

I think your problem is that Initalize is only called once. You probably want to add the indicator to your plot using the Add method from Initialize then set pas from OnBarUpdate.

protected...
Forum: NinjaTrader August 13th, 2013, 01:38 AM
Replies: 2
Views: 1,763
Posted By kandlekid
I think the way to do it is to use a static...

I think the way to do it is to use a static variable, class, etc. A static can only have one instance, which each strategy accesses. Note that you don't instantiate a static, but you declare it....
Forum: NinjaTrader June 26th, 2013, 12:22 PM
Replies: 5
Views: 3,138
Posted By kandlekid
I believe that's true (only available in the...

I believe that's true (only available in the professional version). I use Sharp Develop. It's an open source C# ide.
Forum: NinjaTrader March 13th, 2013, 03:34 AM
Replies: 6
Views: 1,726
Posted By kandlekid
ChartTrader is technically not allowed/supported...

ChartTrader is technically not allowed/supported by NT when used with a strategy (in fact when you run a strategy, ChartTrader is not available from the Control Center). In an ATM/ChartTrader you...
Forum: NinjaTrader March 11th, 2013, 12:47 PM
Replies: 4
Views: 1,707
Posted By kandlekid
For stop loss orders, I'm fairly certain that you...

For stop loss orders, I'm fairly certain that you need to call your code from the OnExecution function (really anytime you want to do something on a fill). The reason being that fills are somewhat...
Forum: NinjaTrader March 10th, 2013, 01:38 PM
Replies: 4
Views: 1,707
Posted By kandlekid
I think you need to use the OnExecution NT...

I think you need to use the OnExecution NT function to access the executions you'll get from fireing the target and/or stop loss functions. You will probably need to set the signal name in the target...
Forum: NinjaTrader March 9th, 2013, 01:50 AM
Replies: 10
Views: 6,472
Posted By kandlekid
Every indicator is different. You've got to know...

Every indicator is different. You've got to know what the author of the indicator provided as public accessibility. Anything in the indicator that is public should be able to be used in your...
Forum: NinjaTrader March 9th, 2013, 01:25 AM
Replies: 10
Views: 6,472
Posted By kandlekid
As Mike said, it's advanced programming. At the...

As Mike said, it's advanced programming. At the moment NT does not normally allow an ATM (chart trader) and strategy to be run simultaneously. As a work around, you need to use the ChartControl...
Forum: NinjaTrader February 1st, 2013, 12:20 AM
Replies: 49
Views: 32,504
Posted By kandlekid
It should be fine on live data. When you set...

It should be fine on live data. When you set "calculate on bar close = false", you're telling NT to calculate (i.e. run OnBarUpdate) on every tick. I believe "calculate on bar close = true" runs...
Forum: NinjaTrader December 28th, 2012, 02:18 AM
Replies: 5
Views: 1,929
Posted By kandlekid
It's simple. I use a state machine. I have...

It's simple. I use a state machine. I have three states: IAmNoPosition, IAmLong, IAmShort. When I have no position, the state is IAmNoPosition. When I enter a long position, the state changes to...
Forum: NinjaTrader June 3rd, 2012, 01:24 PM
Replies: 7
Views: 2,124
Posted By kandlekid
Following the code example in that thread, I was...

Following the code example in that thread, I was able to bring up chart trader from my strategy. As the posters in that thread mentioned, the on chart order visualization does not appear, and I'm...
Forum: NinjaTrader May 29th, 2012, 02:20 PM
Replies: 7
Views: 2,124
Posted By kandlekid
That's a great thread. Thanks !

That's a great thread. Thanks !
Forum: NinjaTrader May 28th, 2012, 11:24 PM
Replies: 7
Views: 2,124
Posted By kandlekid
Semi Automated strategy

Hello All,

Is is possible to run a stategy and chart trader simultaneously ? I don't think it is. The reason I ask is that I'd like to run a strategy that generates alerts to be used to enter...
Forum: Trading Reviews and Vendors January 12th, 2012, 05:47 AM
Replies: 2
Views: 2,655
Posted By kandlekid
Microtends Ninjatrader Framework

Anyone have success with the Microtrends Ninjatrader Framework ? I understand that it is free for sim trading.
Forum: NinjaTrader October 26th, 2011, 12:20 AM
Replies: 5
Views: 2,736
Posted By kandlekid
I agree, a static is one way to go. But...

I agree, a static is one way to go. But remember, a static is a class variable, not an instance variable. If you instantiate multiple instances of your class, they'll all use the same static...
Forum: NinjaTrader October 25th, 2011, 11:53 PM
Replies: 7
Views: 3,540
Posted By kandlekid
This gets the EMA(20) 10 bars ago, but how do you...

This gets the EMA(20) 10 bars ago, but how do you know that the crossing occurred there ? Even if you compare EMA(20)[10] to EMA(50)[10], you still may not know that the crossing occurred there.
...
Forum: NinjaTrader October 21st, 2011, 01:21 AM
Replies: 3
Views: 4,275
Posted By kandlekid
I think you can do it with the IOrder object that...

I think you can do it with the IOrder object that is returned when the original order is entered.

Something like this:

private IOrder iOrder = null;

iOrder = EnterLongLimit( price, "Long...
Forum: NinjaTrader October 20th, 2011, 04:31 AM
Replies: 3
Views: 3,180
Posted By kandlekid
In my mind, it makes no sense to attempt to...

In my mind, it makes no sense to attempt to rectify the differences between backtest mode and real-time because Ninja themselves says that they will occur. See : ...
Forum: Trading Reviews and Vendors October 7th, 2011, 04:00 AM
Replies: 7
Views: 4,745
Posted By kandlekid
True. Thanks Mike. Could it be that they want...

True. Thanks Mike. Could it be that they want the scanner to be disabled in order to pass the .exe file ?

Frankly, I'm with the OP (who wouldn't be ?). I scan every executable I download.
Forum: Trading Reviews and Vendors October 7th, 2011, 03:55 AM
Replies: 7
Views: 4,745
Posted By kandlekid
Are the files downloaded C#/NinjaScript source...

Are the files downloaded C#/NinjaScript source (i.e. have the file suffix .cs) or something else ? I don't see how downloading NinjaScript source files would require disabling the virus scanner.
Showing results 1 to 25 of 63

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 2024 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 - Privacy Policy - Downloads - Top