Cheers
Tommaso
milanese » Tue Feb 25, 2014 8:21 pm wrote:You can try the attached one for 6xx build modified, here it works, like intended with 610 build and GP
Cheers
Tommaso
No here it shows after changing the tf the same values, you can too try the latest experimental version maybe this would work better for you.. Cheerspadnoter » Tue Feb 25, 2014 8:37 pm wrote:
Thanks, but I still get the same... reducing y-axis everytime I switch(&switch back) timeframes... do you not get that Tommaso?
milanese » Tue Feb 25, 2014 8:42 pm wrote:No here it shows after changing the tf the same values, you can too try the latest experimental version maybe this would work better for you..padnoter » Tue Feb 25, 2014 8:37 pm wrote:
Thanks, but I still get the same... reducing y-axis everytime I switch(&switch back) timeframes... do you not get that Tommaso?
Cheers
Tommaso
Hipadnoter » Tue Feb 25, 2014 9:37 pm wrote:milanese » Tue Feb 25, 2014 8:21 pm wrote:You can try the attached one for 6xx build modified, here it works, like intended with 610 build and GP
Cheers
Tommaso
Thanks, but I still get the same... reducing y-axis everytime I switch(&switch back) timeframes... do you not get that Tommaso?
I see it. but as you can see in my post, nothing changes. the y axis is always at 0.6619 in 4h. I have no idea what is wrong in your settings.I have build 610.padnoter » Tue Feb 25, 2014 10:18 pm wrote:Hi,
See my prev. posts - http://www.stevehopwoodforex.com/phpBB3 ... 630#p86931
for screenshots of what I'm getting on build 600
Code: Select all
// Split user input
int size=0;
i = StringFind( symbolsToWeigh, "," );
while ( i != -1 )
{
// int size = ArraySize(symbolNames);
string newSymbol = StringConcatenate(StringSubstr(symbolsToWeigh, 0, i), symbolExtraChars);
if ( MarketInfo( newSymbol, MODE_TRADEALLOWED ) > EPSILON )
{
ArrayResize( symbolNames, size + 1 );
// Set array
symbolNames[size] = newSymbol;
size++;
}
// Trim symbols
symbolsToWeigh = StringSubstr(symbolsToWeigh, i + 1);
i = StringFind(symbolsToWeigh, ",");
}