NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 66
Search: Posts Made By: decs0057
Forum: NinjaTrader April 21st, 2023, 04:01 AM
Replies: 4
Views: 1,482
Posted By decs0057
With this code snippet you can access ChartTrader...

With this code snippet you can access ChartTrader class using ChartControl object

Chart chartWindow = Window.GetWindow(ChartControl.Parent) as Chart;

// if not added to a chart, do...
Forum: NinjaTrader April 6th, 2023, 02:31 PM
Replies: 6
Views: 783
Posted By decs0057
attached source file for options and skeleton of...

attached source file for options and skeleton of adapter
you can use pem file in TestCCN.zip for credentials in options dialog
Forum: NinjaTrader March 30th, 2023, 03:32 AM
Replies: 6
Views: 783
Posted By decs0057
Custom Adapter 'Brand name is not matching'

I want to create a custom NinjaTrader Adpater connecting to api of data feed from germany.
I created the CustomConnectOptions and implemented Adapter interface.
Configuration of connection is...
Forum: NinjaTrader January 28th, 2022, 06:28 AM
Replies: 0
Views: 1,290
Posted By decs0057
Strategy Analyzer iterate trades

Is it possible to iterate through the trades in the strategy analyzer using keystrokes (key left <- goto previous trade, key right -> got next trade)
This would be very helpful for reviewing trades...
Forum: NinjaTrader December 23rd, 2021, 01:46 PM
Replies: 22
Views: 17,870
Posted By decs0057
Does this work also for NT8 daily data? In GIT...

Does this work also for NT8 daily data?
In GIT there are only classes for NCDminute and NCDtick
Forum: NinjaTrader December 1st, 2018, 08:39 AM
Replies: 2
Views: 1,106
Posted By decs0057
I need a NinjaScript AddOn to reject entry orders

I need a NinjaScript AddOn to reject entry orders
Forum: NinjaTrader November 30th, 2018, 02:24 PM
Replies: 2
Views: 1,106
Posted By decs0057
howto disable order entry nt8

is it possible to develop an NT8 addon which can prevent the entry of new entry orders if the daily profit limit or loss limit is reached. All entries from Strategy, ChartTrader, DOM ... should be...
Forum: Options June 10th, 2015, 12:18 PM
Replies: 7,370
Views: 1,951,658
Posted By decs0057
Interactive Brokers is charging $1.41 selling ES...

Interactive Brokers is charging $1.41 selling ES option
Forum: NinjaTrader February 9th, 2015, 10:38 AM
Replies: 12
Views: 8,490
Posted By decs0057
my data supplier is CQG For strategy using...

my data supplier is CQG

For strategy using daily data it is very important to know how daily bars are calcualted.
Using 1440 min bars and selected session template makes daily strategy...
Forum: NinjaTrader February 9th, 2015, 06:18 AM
Replies: 12
Views: 8,490
Posted By decs0057
Compare Daily and 1440 min chart

Why are daily chart and 1440 minute (= 1 day) bar chart different ?
For ES, I use default session template "CME US Index Futures ETH"
Does daily chart depend on timezone ?
I am on GMT+1 timezone...
Forum: NinjaTrader November 29th, 2014, 12:16 PM
Replies: 2
Views: 1,641
Posted By decs0057
It's possible using reflection, see code ...

It's possible using reflection, see code


public void GoTo( DateTime time)
{
MethodInfo miGoTo = typeof(NinjaTrader.Gui.Chart.ChartControl).GetMethod( "GoTo",...
Forum: NinjaTrader May 15th, 2014, 08:46 AM
Replies: 8
Views: 2,958
Posted By decs0057
check thread ClickTrade...

check thread ClickTrade (https://nexusfi.com/ninjatrader-programming/30186-calling-advanced-c-ninjatrader-coders-finish-clicktrade.html)
Forum: NinjaTrader May 15th, 2014, 05:12 AM
Replies: 2
Views: 1,174
Posted By decs0057
Load daily data as 2nd data series In...

Load daily data as 2nd data series

In Initialize

Add( PeriodType.Daily, 1)

In OnBarUpdate

double dailyHigh = Highs[1][x] // x = index for previous days
double dailyLow = Lows[1][x] //...
Forum: NinjaTrader February 17th, 2014, 12:11 PM
Replies: 11
Views: 4,429
Posted By decs0057
You also can access value for Plots without...

You also can access value for Plots without public DataSeries defined.
There is public DataSeries[] Values from IndicatorBase which you can access.
Values[0] are values for Plot[0], Values[1] are...
Forum: NinjaTrader February 9th, 2014, 03:17 AM
Replies: 4
Views: 1,725
Posted By decs0057
It's not possible with managed approach to place...

It's not possible with managed approach to place long and short entry order on same bar. You have to use unmanaged approach...
Forum: NinjaTrader January 17th, 2014, 03:25 PM
Replies: 37
Views: 12,145
Posted By decs0057
you can call Button.PerformClick-Method...

you can call Button.PerformClick-Method (http://msdn.microsoft.com/de-de/library/system.windows.forms.button.performclick%28v=vs.90%29.aspx)
Forum: NinjaTrader January 15th, 2014, 03:48 PM
Replies: 37
Views: 12,145
Posted By decs0057
it works, check ClickTrader update

it works, check ClickTrader update
Forum: NinjaTrader January 15th, 2014, 08:12 AM
Replies: 37
Views: 12,145
Posted By decs0057
There is a class AtiServer with private static...

There is a class AtiServer with private static method ProcessOif

perhaps you can call it with reflection (I didn't test it)

using System.Reflection;
MethodInfo miProcessOif =...
Forum: NinjaTrader January 15th, 2014, 03:07 AM
Replies: 7
Views: 5,757
Posted By decs0057
I also found no method to directly place ATM...

I also found no method to directly place ATM order with NT core method.
Other idea you have to send click event to context menu item "Buy/Sell Limit" of ChartControl

To cancel pending order...
Forum: NinjaTrader January 14th, 2014, 08:07 AM
Replies: 7
Views: 5,757
Posted By decs0057
If you are inside NinjaTrader you don't need to...

If you are inside NinjaTrader you don't need to use NTDirect.dll and NinjaTrader.Client. You can use undocumented functionality from NinjaTrader.Core to place/change/cancel orders (also ATM)
Forum: NinjaTrader January 14th, 2014, 05:18 AM
Replies: 37
Views: 12,145
Posted By decs0057
Order o =...

Order o = a.CreateOrder(Instrument,OrderAction.Buy,OrderType.Limit,TimeInForce.Day,quantity, (double)nudBuyLmtPr.Value,0,"","Buy");
o.Submit();

is undocumented NT functionality, this will send...
Forum: NinjaTrader June 23rd, 2013, 05:22 AM
Replies: 12
Views: 5,129
Posted By decs0057
Hi DrE6 Account.CreateOrder is not official...

Hi DrE6

Account.CreateOrder is not official supported from NT, you will not find any official documentation but if you check NinjaTrader.Core.dll you will find method.

decs0057
Forum: NinjaTrader June 22nd, 2013, 03:48 PM
Replies: 12
Views: 5,129
Posted By decs0057
Set stop loss to big value, it is possible to...

Set stop loss to big value, it is possible to create stop loss order with Account.CreateOrder
but what if stop loss is filled before ATM entry order is filled ?
Forum: NinjaTrader June 13th, 2013, 08:41 AM
Replies: 14
Views: 5,290
Posted By decs0057
stop loss and target for ATM is based on entry...

stop loss and target for ATM is based on entry price
It is not possible to set from Close of entry bar in ATM

To do this you have to use unsupported NT code
Forum: NinjaTrader May 16th, 2013, 06:10 AM
Replies: 3
Views: 1,629
Posted By decs0057
It is possible with NinjaTrader ATI interface ...

It is possible with NinjaTrader ATI interface
see NinjaTrader Version 7 (http://www.ninjatrader.com/support/helpGuides/nt7/index.html?order_instruction_files_oif.htm)
Showing results 1 to 25 of 66

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