Page 2 of 2

Re: Mindhero Strategy

PostPosted: Fri Feb 10, 2012 8:49 pm
by Hug Coder
Thanks sunshine. I'll try it as soon as possible.

But one thing I'm unsure of:
When I create the indicator I use the BarSource. Doesn't that mean that every update of the indicator (Indicator[1]:update(core.UpdateLast); ) will just recieve updates from the BarSource?
Or will it actually send the live/non-closed candle of BarSource to the indicator at the update?

Also, this means I only work with the tick source right?
Basically I can write:
If id ~= tickID then
return;
end

I can unfortunately not test now. I get a weird error when I try to login.
"database error ORA--2"
Maybe fixed tomorrow. I'll try live (demo) trading on monday if the code works.

Re: Mindhero Strategy

PostPosted: Sun Feb 12, 2012 3:49 am
by Apprentice
The likely reason for this message,
server on which you are trying to connect is off line,
It is often the case during the weekend.
FXCM uses this time to upgrade and maintain.

Re: Mindhero Strategy

PostPosted: Mon Feb 13, 2012 3:47 am
by sunshine
Hug Coder wrote:When I create the indicator I use the BarSource. Doesn't that mean that every update of the indicator (Indicator[1]:update(core.UpdateLast); ) will just recieve updates from the BarSource?
Or will it actually send the live/non-closed candle of BarSource to the indicator at the update?

The function "update(core.UpdateLast)" just re-calculates the last indicator value according to the indicator source stream. The indicator source stream is updated automatically when a new tick comes.

Hug Coder wrote:Also, this means I only work with the tick source right?
Basically I can write:
If id ~= tickID then
return;
end

Yes.

Re: Mindhero Strategy

PostPosted: Sun Oct 21, 2012 2:27 am
by rtsayers
Just wondering if there is any update on this strategy? I would love to see a working strategy for this indicator!

Thanks!

Re: Mindhero Strategy

PostPosted: Sun Oct 21, 2012 3:31 am
by Apprentice
There is a bug in TS.
Bug Fix will be included in the next official version.


Until then, I can not help you.