Open()
Created at 03 Apr 2015, 22:03
Open()
03 Apr 2015, 22:03
Hi,
I'm new to C#/cAlgo and I'm trying to learn from some of the example cBots.
I noticed in the Sample RSI cBot that there are Open() and Close() methods in use:
private void Close(TradeType tradeType)
and:
if (rsi.Result.LastValue < 30) { Close(TradeType.Sell); Open(TradeType.Buy); }
However I can't find these methods in the documentation - can anyone explain what these are and how to use them (or point me to documentation)?
Thanks,
Jeremy
Manuel_Meza
03 Apr 2015, 22:39
RE:
Son Metodos, que tu creas... tu decides que quieres que hagan y que no... no son metodos que vienen con el programa. Espero te sirva...
JeremyG said:
@Manuel_Meza