Topics
Replies
lec0456
26 Dec 2013, 22:24
Ok, I realized there was a difference and wanted to verify. But here is another thing. Even if they start on different numbers lets say an index for GBPUSD starts at 10 and EURUSD starts at 1. Lets say you are on a 5 min chart, in an hours time you will not always get 12 periods because sometimes the series skips!!! I see times where it jumps from 00:35 to 00:45. This can screw up a lot of calculations.
could there be a setting so that periods with no activity still get a mark? I've heard of a such a setting on other platforms.
@lec0456
lec0456
17 Dec 2013, 07:33
Ok, so in this post you use a function:
private int GetIndexByDate(MarketSeries series, DateTime time) { for (int i = series.Close.Count - 1; i > 0; i--) { if (time == series.OpenTime[i]) return i; } return -1; }
We don't need to use this function or multitime frames anymore? because its implemented as a method, correct?
@lec0456
lec0456
15 Dec 2013, 10:22
if you take a look at this chart:
http://roboforex.ctrader.com/c/lj2nn
I would like to get the day labels on the same y-position independent of scrolling left or right.
@lec0456
lec0456
08 Dec 2013, 20:03
RE:
AwarenessForex said:
So why isn't spotware allowing the broker to choose its own server time? Doesn't the broker have a choice in what time is displayed in the platform?
I actually preferred the UTC +2/3 so that all trading times start at 00:00:00 Monday and finish 23:59:59 on Friday of every week.
Of course, you mean Cyprus time or Western European time zone. so do I. I think all was fixed. You can select the time zone you like in the gui Sever +3 and you can set the time zone for robots and indicators specifically to Western European Time Zone.
The only gap I am not certain about is that when you are looking at the gui If you select Server +3 there are certain periods of maybe a week when some time zones start daylight savings on different days. During those gaps the gui will be off because it is displaying a fixed utc+3 instead of a time zone which adjusts on the proper day +2 or +3 for example
@lec0456
lec0456
23 Oct 2013, 08:22
I renamed my robot folder and it still hangs on start up. this is not an optimization issue, like saying it should be faster. Its more of a "this program is not working issue". When I opened the program it created a new robots folder with the samples but even as I write this comment the cAlgo will not start up
@lec0456
lec0456
17 Oct 2014, 13:40
no, no. I mean when you check or uncheck the output to be displayed, like %K in the window above: if there a way to read that variable within the code?
Like
if (!PercentK.Hidden){ ChartObjects.DrawText("STOlabel1", DisplayK, index, PercentK[index], VerticalAlignment.Center, HorizontalAlignment.Right, Colors.Green);)
@lec0456