NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 254
Search: Posts Made By: bukkan
Forum: NinjaTrader October 16th, 2012, 10:17 AM
Replies: 3
Views: 3,218
Posted By bukkan
What codes are you using? Can you post some codes...

What codes are you using? Can you post some codes replicating the behavior.

Also for the same instrument NinjaTrader will return the first bars in progress series in the OnMarketData event.
...
Forum: NinjaTrader September 24th, 2012, 12:15 PM
Replies: 77
Views: 49,480
Posted By bukkan
1) How long have you been using NinjaTrader? ...

1) How long have you been using NinjaTrader?

Since 2008-09

2) What are your favorite features of NinjaTrader?

NinjaScript

3) What are some must-have deal breaker features in NinjaTrader...
Forum: NinjaTrader September 23rd, 2012, 01:37 PM
Replies: 6
Views: 1,825
Posted By bukkan
The err is coming from this line of code in the...

The err is coming from this line of code in the initialize section of the code

period = Bars.Period.Value.ToString();
Forum: NinjaTrader September 17th, 2012, 12:50 AM
Replies: 1,036
Views: 390,113
Posted By bukkan
Big Mike, pls make sure "Save chart data as...

Big Mike, pls make sure "Save chart data as historical" is checked in Tools>Options>Data tab
Forum: NinjaTrader August 3rd, 2012, 12:25 AM
Replies: 7
Views: 4,144
Posted By bukkan
you got to assign an object to the order and use...

you got to assign an object to the order and use the CancelOrder method to cancel the order

IOrder order = EnterLongLimit(.....);

//to cancel the order
if (order != null && order.OrderState...
Forum: NinjaTrader June 26th, 2012, 12:45 AM
Replies: 1,036
Views: 390,113
Posted By bukkan
Market profile and Footprint charts are both...

Market profile and Footprint charts are both patented (by CME and Market Delta respectively). That can cause some issues (like the user has to pay additional fees if he wants to use the Static...
Forum: NinjaTrader May 22nd, 2012, 09:19 AM
Replies: 295
Views: 134,884
Posted By bukkan
Officially NT7 was released some 1.5 years back. ...

Officially NT7 was released some 1.5 years back.

Ray did a webinar too after its official release here at nexusfi.com (formerly BMT).
Webinar: NinjaTrader 7 Final Overview and Q&A...
Forum: NinjaTrader May 2nd, 2012, 04:58 AM
Replies: 34
Views: 15,280
Posted By bukkan
I dont know if this is exactly you are trying to...

I dont know if this is exactly you are trying to do, but to access the gaugeContainer1 object in the dll you should expose it.

//in the dll add the below in the TimmybForm1 class
public...
Forum: NinjaTrader May 1st, 2012, 11:19 PM
Replies: 34
Views: 15,280
Posted By bukkan
ThatManFromTexas ya, everything is fine. Just...

ThatManFromTexas ya, everything is fine. Just busy with life. Thx.
Forum: NinjaTrader May 1st, 2012, 03:21 AM
Replies: 34
Views: 15,280
Posted By bukkan
I dont have the dundas stuff so cant test. But do...

I dont have the dundas stuff so cant test. But do numericIndicator1.Value returns a double or a decimal. If it is a decimal please modify your code like:
numericIndicator1.Value = 367.12M;
...
Forum: NinjaTrader February 11th, 2012, 10:36 AM
Replies: 11
Views: 4,156
Posted By bukkan
the above code is same as if(CurrentBar < 0 ||...

the above code is same as
if(CurrentBar < 0 || CurrentBars[1] < 0 || CurrentBars[2] < 0) return;
Print("Closing price for " + Instrument.FullName + ": " + Close[0]);


to get the close of the...
Forum: NinjaTrader January 4th, 2012, 02:34 PM
Replies: 1,059
Views: 368,589
Posted By bukkan
Puma, if it works for me (including lock) but not...

Puma, if it works for me (including lock) but not for you, then the issue must be something different. Maybe it is just a case of corrupt workspace. delete the said workspace from the <my...
Forum: NinjaTrader January 4th, 2012, 07:56 AM
Replies: 1,059
Views: 368,589
Posted By bukkan
Puma, DrawObjects (including texts) are saved...

Puma,
DrawObjects (including texts) are saved by NT. You just got to save the same via a workspace (in Control Center, goto File>WorkSpace>Save Workspace/Save Workspace As).

the 20 day limit is...
Forum: NinjaTrader December 16th, 2011, 01:48 PM
Replies: 1,036
Views: 390,113
Posted By bukkan
just make an indicator. and since you are...

just make an indicator. and since you are programming your own indi you can go overboard to any extent ;)

NinjaTrader Support Forum - View Single Post - On-close-window save workspace -...
Forum: Brokers December 14th, 2011, 10:32 AM
Replies: 17
Views: 12,136
Posted By bukkan
The CME waiver for Interactive Brokers is already...

The CME waiver for Interactive Brokers is already supported through Kinetick which is a DTN/IQ rebranded. Check this link Kinetick - Streaming real time quotes and hstorical market data CME Data Fee...
Forum: Feedback and Announcements December 14th, 2011, 09:26 AM
Replies: 83
Views: 43,053
Posted By bukkan
Mike, is the voting on?? Any links for the same.

Mike, is the voting on?? Any links for the same.
Forum: NinjaTrader December 5th, 2011, 08:53 AM
Replies: 7
Views: 1,853
Posted By bukkan
CancelAllOrders(true, true);

CancelAllOrders(true, true);
Forum: NinjaTrader December 4th, 2011, 07:29 AM
Replies: 7
Views: 1,853
Posted By bukkan
are you using the bool overloads

are you using the bool overloads
Forum: NinjaTrader December 3rd, 2011, 10:39 PM
Replies: 7
Views: 1,853
Posted By bukkan
you can simply use CancelAllOrders(....) ...

you can simply use
CancelAllOrders(....)

alternatively for better management (i.e. not only for cancelling orders) i would prefer to have a list, like

in variables
private List<IOrder> list...
Forum: NinjaTrader November 26th, 2011, 06:59 AM
Replies: 3
Views: 3,883
Posted By bukkan
&& = AND ALSO not = ! like if (x...

&& = AND ALSO

not = !

like

if (x != y)
{
//do something
}
Forum: Traders Hideout November 17th, 2011, 11:09 AM
Replies: 16
Views: 8,614
Posted By bukkan
sim/backtesting works on the premise of worst...

sim/backtesting works on the premise of worst case scenario. hence unless price crosses your limit price it wont get filled. in realtime order is filled as per price-time priority.

smart order...
Forum: NinjaTrader November 16th, 2011, 07:16 AM
Replies: 6
Views: 2,769
Posted By bukkan
Control ctrader =...

Control ctrader = ChartControl.Controls["pnlChartTrader"].Controls["ctrChartTraderControl"];

i have posted some codes relating to the same sometimes back. pls search my posts you will get the...
Forum: NinjaTrader November 15th, 2011, 09:05 AM
Replies: 10
Views: 4,798
Posted By bukkan
try this. took a bit more than 10 min ;) a...

try this. took a bit more than 10 min ;)

a multi-instrument indicator can also be an effective approach, but then.....
Forum: Trading Journals November 14th, 2011, 05:56 AM
Replies: 770
Views: 188,399
Posted By bukkan
my thoughts and prayers are with you and your...

my thoughts and prayers are with you and your family. hope she recovers soon.
Forum: NinjaTrader November 13th, 2011, 08:49 AM
Replies: 1,036
Views: 390,113
Posted By bukkan
the attached pic is what i meant. a 14 ema...

the attached pic is what i meant. a 14 ema (orange line) and a 21 hma (blue) on an ATR (green line with default settings).

if you meant something else then i must have understood you wrong.
Showing results 1 to 25 of 254

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

Total votes: 159
 


 
 


© 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