NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 25
Search: Posts Made By: cutzpr
Forum: NinjaTrader August 25th, 2020, 08:00 PM
Replies: 33
Views: 10,811
Posted By cutzpr
Could you make some videos on how to find memory...

Could you make some videos on how to find memory leaks inside Ninja script and profiling code.
Forum: Platforms and Indicators August 19th, 2020, 08:24 AM
Replies: 2
Views: 4,317
Posted By cutzpr
Also Try GridMove ...

Also Try GridMove
https://www.dcmembers.com/jgpaiva/


and WinSplit
https://winsplit-revolution.en.softonic.com/
Forum: NinjaTrader August 5th, 2020, 07:54 AM
Replies: 7
Views: 2,407
Posted By cutzpr
I personally built a web interface to control my...

I personally built a web interface to control my strategies and accounts but I went way overkill.

Depending how you have your firewall setup, you do not want to leave RDP open on your system. If...
Forum: Currencies June 28th, 2020, 08:45 PM
Replies: 11
Views: 7,967
Posted By cutzpr
I would do the opposite. Trade the FX futures and...

I would do the opposite. Trade the FX futures and use the free spot data. But anyways, to each their own. You can get a free two weeks from CQG/Ninjatrader but creating a demo account with a new...
Forum: Emini and Emicro Index February 15th, 2019, 09:50 AM
Replies: 29
Views: 5,372
Posted By cutzpr
Just for a warm and fuzzy, I would compare a...

Just for a warm and fuzzy, I would compare a sample set of timeusing high order fill resolution (essentially places the trade on a 1 tick data series. Run the strategy normally for lets say the last...
Forum: NinjaTrader February 12th, 2019, 10:13 PM
Replies: 1
Views: 1,896
Posted By cutzpr
Correlation Indicator for NT8

Does anyone have any correlation indicators for NT8. There are several in the downloads section for NT7 but I couldnt find anything for NT8.

If something is up to converting one to NT8, that would...
Forum: NinjaTrader January 7th, 2019, 10:05 AM
Replies: 3
Views: 891
Posted By cutzpr
You would want to do something like this. ...

You would want to do something like this.


if(State == State.Historical) return; //It will not continue if bars are historical, only realtime

If(SignalEnter)
{
enter market
}
Forum: NinjaTrader August 14th, 2018, 11:11 AM
Replies: 23
Views: 11,344
Posted By cutzpr
Any luck? I appreciate you taking on this...

Any luck? I appreciate you taking on this endeavor.
Forum: NinjaTrader August 3rd, 2018, 02:42 PM
Replies: 2
Views: 1,199
Posted By cutzpr
Send it over to me via PM. I am not an expert but...

Send it over to me via PM. I am not an expert but Ill give it a shot.
Forum: NinjaTrader July 19th, 2018, 09:44 PM
Replies: 7
Views: 944
Posted By cutzpr
Try something like this, I havent tested if this...

Try something like this, I havent tested if this works or not but this is what I use to flatten my strategies.


else if (State == State.Terminated)
{
foreach(Order order in Orders)...
Forum: NinjaTrader July 12th, 2018, 12:27 AM
Replies: 7
Views: 944
Posted By cutzpr
What do you mean by "completing a strategy? "...

What do you mean by "completing a strategy? " What event would trigger your strategy to be complete?
Forum: NinjaTrader July 12th, 2018, 12:05 AM
Replies: 23
Views: 11,344
Posted By cutzpr
Ninjatrader Telegram Addon

Any experienced programmers willing to build a Telegram messaging Addon Share Service for Ninja trader? Telegram is one of the only full blown messaging apps that have an API. There's a ton of ...
Forum: NinjaTrader September 9th, 2016, 01:42 AM
Replies: 4
Views: 1,417
Posted By cutzpr
Post it, I will give it a try.

Post it, I will give it a try.
Forum: NinjaTrader September 9th, 2016, 01:41 AM
Replies: 2
Views: 1,017
Posted By cutzpr
I am by far no expert but I will give it a try....

I am by far no expert but I will give it a try. You can post it here or PM me.
Forum: NinjaTrader February 29th, 2016, 10:11 AM
Replies: 2,093
Views: 977,564
Posted By cutzpr
Has this indicator been successfully ported to...

Has this indicator been successfully ported to NT8 yet?
Forum: NinjaTrader February 4th, 2016, 08:08 AM
Replies: 7
Views: 6,296
Posted By cutzpr
Even though this is an old post, I had to reply....

Even though this is an old post, I had to reply. There is a better way to get the number of decimal places.



//Number of decimals places

double decimals = Math.Log10(1/TickSize);
Forum: NinjaTrader January 25th, 2016, 02:02 PM
Replies: 3
Views: 3,837
Posted By cutzpr
I need some coding/math guru's to please let me...

I need some coding/math guru's to please let me know what is wrong with this code. The formula for a Reverse Exponential Moving Average is http://i.stack.imgur.com/iaaGl.png.

There are two...
Forum: NinjaTrader January 24th, 2016, 10:53 PM
Replies: 9
Views: 1,604
Posted By cutzpr
Thanks sam028. For some reason the . Length was...

Thanks sam028. For some reason the . Length was not working for me.
Forum: NinjaTrader January 24th, 2016, 12:59 AM
Replies: 9
Views: 1,604
Posted By cutzpr
I wanted to find the length of a given...

I wanted to find the length of a given array/series and also be able to get the array position with the highest number and lowest number without have to use a loop to go through the entire series.
Forum: NinjaTrader January 23rd, 2016, 05:53 PM
Replies: 9
Views: 1,604
Posted By cutzpr
I tried to add System.Int32 and System.Array in...

I tried to add System.Int32 and System.Array in the declarations but they are unavailable in the NJ editor. Please take a look at the image to see what I am talking about.

I should also add I am...
Forum: NinjaTrader January 23rd, 2016, 04:57 PM
Replies: 9
Views: 1,604
Posted By cutzpr
Missing Declarations

I'm new to c# and NJ script.

I am trying use different methods to work with arrays, take for instance the max, min and length of an array. I see that there are methods such as

array.max ...
Forum: NinjaTrader January 20th, 2016, 10:41 AM
Replies: 3
Views: 3,837
Posted By cutzpr
Reverse Exponential Moving Average

Does anyone have a Reverse Exponential Moving Average ninjascript? Or can help me convert this code from Amibrokers to Ninjatrader

// Reverse EMA function, by D.Tsokakis, June 2003

P=20;...
Forum: Brokers February 11th, 2014, 05:30 PM
Replies: 3
Views: 5,081
Posted By cutzpr
I use Trading Diary pro to connect to my...

I use Trading Diary pro to connect to my Interactive Brokers account. You can import all your trade history directly into the software and it handles the rest. It is awesome. The upfront cost seems a...
Forum: NinjaTrader February 11th, 2014, 12:13 PM
Replies: 1,036
Views: 382,600
Posted By cutzpr
The ability to run scripts like MT4, where we can...

The ability to run scripts like MT4, where we can program anything to our hearts content. Program a shortcut key and it will execute once selected or pressed. I shouldn't be that hard to implement....
Forum: NinjaTrader April 19th, 2013, 04:27 PM
Replies: 1,036
Views: 382,600
Posted By cutzpr
My rants on NJ7

I dont know if this was already requested but I would like NJ to be able to attach ATM strategies to already open orders. Sometimes orders are placed with no ATM, or the order initially had an ATM...
Showing results 1 to 25 of 25

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