NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 25
Search: Posts Made By: ValutaTrader
Forum: EasyLanguage Programming September 14th, 2012, 03:15 AM
Replies: 11
Views: 12,540
Posted By ValutaTrader
Ørjan, Put the code above into a separate...

Ørjan,

Put the code above into a separate function MACD_calc and you may get a different result.
MACD=MACD_calc(Price, Length1, Length2) of Data2

Function
MACD_calc

input :...
Forum: EasyLanguage Programming September 13th, 2012, 11:49 AM
Replies: 2
Views: 4,350
Posted By ValutaTrader
I think I found the solution myself. I created my...

I think I found the solution myself. I created my own ParabolicSAR multi frame function that does not use referenced series but keep the series buffers locally and simply returns the ParCL as return...
Forum: EasyLanguage Programming September 13th, 2012, 09:34 AM
Replies: 2
Views: 4,350
Posted By ValutaTrader
Parabolic SAR and data(N)

I have multiple sub charts, and would like to reference the Parabolic SAR of sub chart 3 which is 60 min resolution; whilst my primary sub chart is running on 1 min resolution.

When I set this up...
Forum: NinjaTrader May 31st, 2012, 03:07 AM
Replies: 12
Views: 5,756
Posted By ValutaTrader
Thanks for the last clarifications. I...

Thanks for the last clarifications.

I thought I could use the session templates to specify times of the day when I myself feel the liquidity is best for my strategies so that the strategies wont...
Forum: NinjaTrader May 30th, 2012, 06:46 PM
Replies: 12
Views: 5,756
Posted By ValutaTrader
I guess you are at the core of my question there....

I guess you are at the core of my question there. It is not my intention to exclude data at all. I was in fact wondering why that happened when I use one of these templates. I pick an instrument,...
Forum: NinjaTrader May 30th, 2012, 05:38 PM
Replies: 12
Views: 5,756
Posted By ValutaTrader
Sorry; strange typo there.... I meant a pause...

Sorry; strange typo there....
I meant a pause or more specifically that the session is configured with multiple sections in the same day: 1AM-5AM followed by 7AM-1PM

The chart then jumps...
Forum: NinjaTrader May 30th, 2012, 04:33 PM
Replies: 12
Views: 5,756
Posted By ValutaTrader
PS I do see in the example/issue that it may...

PS I do see in the example/issue that it may actually be MedianRenko and not ADX that is the cause of the difference.
Forum: NinjaTrader May 30th, 2012, 04:31 PM
Replies: 12
Views: 5,756
Posted By ValutaTrader
Yes, I was a bit unclear on bars vs indicators. I...

Yes, I was a bit unclear on bars vs indicators. I feel both of them may give different results in this scenario however, and yes, some of these may contain errors as well.

PS In my view, some of...
Forum: NinjaTrader May 30th, 2012, 09:23 AM
Replies: 12
Views: 5,756
Posted By ValutaTrader
Session Templates and Price Action

Anyone using NTs built in session template for live automated trading?

I experience that quite a lot of indicators give wrong signals at the start of the session since they averages are calculated...
Forum: EasyLanguage Programming May 8th, 2012, 03:21 AM
Replies: 13
Views: 9,482
Posted By ValutaTrader
The function that got me started on this, was...

The function that got me started on this, was actually ill written, to some extent, and I could have managed without the array (in that case I put values into it in the wrong order).
So when I was...
Forum: EasyLanguage Programming May 8th, 2012, 02:59 AM
Replies: 13
Views: 9,482
Posted By ValutaTrader
Ok, I see why we got different results. Your...

Ok, I see why we got different results. Your function did not give the correct result on my side, and it is because the array that I tested with had the last price in index 0 and not the other way...
Forum: EasyLanguage Programming May 8th, 2012, 02:42 AM
Replies: 13
Views: 9,482
Posted By ValutaTrader
Played around with it, and referring to index 0...

Played around with it, and referring to index 0 of price seems to do the trick. Not sure why though

XAverage_a = XAverage_a[1] + factor * ( PriceValue[0] - XAverage_a[1] ) ;
Forum: EasyLanguage Programming May 7th, 2012, 03:28 PM
Replies: 13
Views: 9,482
Posted By ValutaTrader
I created a test myself, and I am disappointed to...

I created a test myself, and I am disappointed to see that they are not 100% identical. The code is based on XAverage, and I cannot yet see where the small difference come from, but it is slightly...
Forum: EasyLanguage Programming May 7th, 2012, 09:18 AM
Replies: 13
Views: 9,482
Posted By ValutaTrader
I think this is close to what you are looking for...

I think this is close to what you are looking for (function XAverage_a). I am struggling myself to come to terms with the syntax of EasyLanguage, while trying to implement the QQE indicator, so...
Forum: NinjaTrader March 14th, 2012, 04:44 PM
Replies: 6
Views: 3,653
Posted By ValutaTrader
Yes, I do actually ...

Yes, I do actually

EntriesPerDirection = 1;
EntryHandling = EntryHandling.AllEntries;
CalculateOnBarClose = true;
IncludeCommission = true;
...
Forum: NinjaTrader March 14th, 2012, 01:19 PM
Replies: 6
Views: 3,653
Posted By ValutaTrader
I actually do have a second/followup question to...

I actually do have a second/followup question to this.

I am testing on a simulation account, with a template now that runs only between 9.30-11 US Equity time. That period seems to give good...
Forum: NinjaTrader March 14th, 2012, 07:29 AM
Replies: 6
Views: 3,653
Posted By ValutaTrader
ah, of course :) Did not look at the equity...

ah, of course :)

Did not look at the equity markets themselves other than the data series from the 24h future market, so I did not see that US Equities was actually closed at the same time the...
Forum: NinjaTrader March 13th, 2012, 05:26 PM
Replies: 6
Views: 3,653
Posted By ValutaTrader
Session templates in NT7

From what I have read, NT should handle daylight saving time with respect to templates. I live in GMT+1, and my PC is set up (Windows 7) to adjust for DST. We dont actualy shift until the last...
Forum: NinjaTrader March 5th, 2012, 04:27 AM
Replies: 1
Views: 1,474
Posted By ValutaTrader
Bollinger Width again

I have used this indicator to signal volatility breakout on a different platform before. It is similar to some that have been posted earlier, but this uses the EMA or SMA of the bandwidth to help...
Forum: NinjaTrader February 29th, 2012, 07:08 AM
Replies: 3
Views: 2,516
Posted By ValutaTrader
I may have figured this out myself. It seems to...

I may have figured this out myself. It seems to be the event

protected override void OnMarketData(MarketDataEventArgs e){
if (e.MarketDataType == MarketDataType.Last){
...
Forum: NinjaTrader February 29th, 2012, 02:52 AM
Replies: 3
Views: 2,516
Posted By ValutaTrader
Trailing stops and backtesting

I am calling my trailing stop function on each bar. It only moves the stop level if my logic tells it to (i.e. a minimum profit level has been reached). My issue with NinjaTrader on this is that on...
Forum: Brokers February 28th, 2012, 05:57 PM
Replies: 668
Views: 307,082
Posted By ValutaTrader
I just want to tell you about my own appreciation...

I just want to tell you about my own appreciation for the customer service level at Optimus Trading Group. @mattz (https://nexusfi.com/trading_member/7726-mattz.html) spent time initially in getting...
Forum: Tech Support January 16th, 2012, 05:06 AM
Replies: 105
Views: 22,001
Posted By ValutaTrader
Apple iPhone 4S (IOS v5.0.1) and IPad 1.0 (IOS...

Apple iPhone 4S (IOS v5.0.1) and IPad 1.0 (IOS v5.0.1)
Tapatalk 1.12.2

Sometimes it works sometimes it doesn't (and then I get the mentioned error message).
Forum: Trading Journals December 31st, 2011, 02:55 PM
Replies: 588
Views: 127,989
Posted By ValutaTrader
You can also plot a simple MA (20 period or so)...

You can also plot a simple MA (20 period or so) of the volatility histogram, and use the "bar crossing the MA" as trigger. For some instruments, the direction of the initial move may be a fake....
Forum: Feedback and Announcements September 5th, 2011, 04:11 PM
Replies: 524
Views: 111,502
Posted By ValutaTrader
I am quite a new member on this site, and have...

I am quite a new member on this site, and have only been actively following the forum for the last Month, but with experience from other forums I agree to having the download section restricted to...
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