NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 20 of 20
Search: Posts Made By: profits
Forum: NinjaTrader August 24th, 2016, 03:40 PM
Replies: 695
Views: 430,343
Posted By profits
TopGunNote Your charts may be different, but...

TopGunNote

Your charts may be different, but the info on it is the same. This does not apply to "Trading Noob's charts, therefore I would not be inclined to attribute such great differences to a...
Forum: NinjaTrader August 24th, 2016, 03:07 PM
Replies: 695
Views: 430,343
Posted By profits
BACK UP everything before you start! You may...

BACK UP everything before you start!

You may not have the same version of UniRenko and the other indicators on both computers.

Good luck!
Forum: NinjaTrader August 24th, 2016, 03:00 PM
Replies: 695
Views: 430,343
Posted By profits
If you cannot figure it out in an obvious way,...

If you cannot figure it out in an obvious way, you may have to "export" UniRenko and possibly the other indicators and "Import" them to the other platform. Also, you can use the tech support, just be...
Forum: NinjaTrader August 24th, 2016, 02:50 PM
Replies: 695
Views: 430,343
Posted By profits
check the "Data Series" of the good chart to the...

check the "Data Series" of the good chart to the other.
Forum: NinjaTrader August 24th, 2016, 02:40 PM
Replies: 695
Views: 430,343
Posted By profits
Check the settings under the Pivots indicator....

Check the settings under the Pivots indicator. They are (0,0,0,20) on one and (0,0,0,5) on the other.
Forum: NinjaTrader August 24th, 2016, 02:19 PM
Replies: 695
Views: 430,343
Posted By profits
Can you post the indicators that you are using? ...

Can you post the indicators that you are using? I think I may have an idea of why it is happening
Forum: NinjaTrader March 18th, 2014, 07:43 PM
Replies: 695
Views: 430,343
Posted By profits
Hello Raj1; No, you misunderstood. You can...

Hello Raj1;

No, you misunderstood. You can have multiple UniRenkos in your strategy, no problem. Otherwise, the statement I have sent you earlier would not be possible.

You just cannot show...
Forum: NinjaTrader March 18th, 2014, 04:12 PM
Replies: 695
Views: 430,343
Posted By profits
Hello Raj1; In order to use the "Strategy...

Hello Raj1;

In order to use the "Strategy Analyzer" you already have to have a working strategy developed. This is just a tool you can use to test how well your strategy performs. Personally, I...
Forum: NinjaTrader March 17th, 2014, 02:11 PM
Replies: 695
Views: 430,343
Posted By profits
Yes, I believe that v. 4 is the latest,...

Yes, I believe that v. 4 is the latest, correctly-functioning version
Forum: NinjaTrader March 16th, 2014, 11:30 PM
Replies: 695
Views: 430,343
Posted By profits
Hi WolfieWolf, I use UniRenko in a multi-time...

Hi WolfieWolf, I use UniRenko in a multi-time frame strategy and I have no issues as you describe. Please make sure that you have the latest version, because there were some problems with the earlier...
Forum: NinjaTrader July 14th, 2013, 09:44 AM
Replies: 695
Views: 430,343
Posted By profits
ckkoh, while I obviously do not know the details...

ckkoh, while I obviously do not know the details of your source code, be sure to try this. Forward test it, or live test it on demo account. Do not backtest it. This is because static data does not...
Forum: NinjaTrader July 12th, 2013, 10:10 AM
Replies: 695
Views: 430,343
Posted By profits
This is for everyone who wishes to use the...

This is for everyone who wishes to use the UniRenko bar type as a non-primary input series in a strategy. Learn from my mistake. The correct statement is:

Add(PeriodType.Custom5, 004008002);...
Forum: NinjaTrader July 11th, 2013, 03:40 PM
Replies: 695
Views: 430,343
Posted By profits
ADD statement for UniRenko as non-primary input series

dstrader, thanks for sharing your source code with us. Is it possible to add this UniRenko bar type as a non-primary input series in a strategy? If so, would you please specify the ADD statement for...
Forum: NinjaTrader March 28th, 2013, 10:35 PM
Replies: 695
Views: 430,343
Posted By profits
I have now made a new, very stupid-simple...

I have now made a new, very stupid-simple strategy just to try the Add() statement. It does nothing more than paint a diamond when two MA's cross. Then, I inserted the Add(PeriodType.Custom5,...
Forum: NinjaTrader March 28th, 2013, 03:17 PM
Replies: 695
Views: 430,343
Posted By profits
this statement: Add(PeriodType.Custom5,...

this statement:

Add(PeriodType.Custom5, 004008002);

gives a run-time error:

**NT** Failed to call method 'Initialize' for strategy 'RangeChartSlopes/6b7d4915312c43ab884f55c1706c5d1a': Please...
Forum: NinjaTrader March 28th, 2013, 08:51 AM
Replies: 695
Views: 430,343
Posted By profits
Add(PeriodType.Custom5, 004008002); // compiles OK but gives run-time error

As I said the Add() statement COMPILES OK but gives run time error:

**NT** Failed to call method 'Initialize' for strategy 'RangeChartSlopes/6b7d4915312c43ab884f55c1706c5d1a': Please use the...
Forum: NinjaTrader March 28th, 2013, 08:25 AM
Replies: 695
Views: 430,343
Posted By profits
Initialize()

Hi, MWinfrey, here is my Initialize() method

protected override void Initialize()
{
CalculateOnBarClose = false;
Add(PeriodType.Minute, 1); //(BarsArray[1]
...
Forum: NinjaTrader March 27th, 2013, 07:27 PM
Replies: 695
Views: 430,343
Posted By profits
Add(PeriodType.Custom5, 004008002);

I have another question for "monpere" or anyone else who can help me.

In the download link

https://nexusfi.com/download/ninjatrader-7/indicators/1304-download.html?view

the following line is...
Forum: NinjaTrader March 27th, 2013, 11:20 AM
Replies: 695
Views: 430,343
Posted By profits
Thanks MWinfrey, that fixed the compile problem! ...

Thanks MWinfrey, that fixed the compile problem! Another question please...
What order are the numbers in? In other words
004 = ?
008 = ?
002 = Tick Trend????

I need to clarify that. Thanks...
Forum: NinjaTrader March 27th, 2013, 11:09 AM
Replies: 695
Views: 430,343
Posted By profits
UniRenko - Add statement to strategy code

I have a question regarding this UniRenko which works great on a chart. I am in the process of developing a multi time-frame strategy. I have put the Add statement in as follows:
...
Showing results 1 to 20 of 20

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