Topics
Replies
mparama
01 Jul 2018, 18:35
RE: RE: RE: RE: RE:
zedodia said:
Im still new to bots, ive been trading for a while now but bot facinate me for many reasons. im trying to find an actual bot that will be profitable. is this a dream or is it actually something i can obtain and help escape the rat race?
There is no a single bot that is always profitable.
To be profitable you need to build a strategy with min 5 to 10 and more bots with different logics.
@mparama
mparama
28 Jun 2018, 17:26
Dear Panagiotis,
thank you very much...it works !!!
Before it goes SLEEP I wrote the code to insert a text on the chart but it doesnt appear when it goes SLEEP.
//================================================
private void FreezeTime()
{
ChartObjects.RemoveAllObjects();
ChartObjects.DrawText("DelayS", "\n\n\n\n\n\n\n\n\n\nFreeze" + " Delay: " + timeFrameSell, StaticPosition.TopCenter, Colors.Red);
if (freeze == 1)
{
//------ 1000 = 1 secondo -----------------60.000 1 minuto----------------
System.Threading.Thread.Sleep(delayMinB * 60000);
ChartObjects.RemoveObject("DelayS");
freeze = 0;
CountS = 0;
OnStart();
}
}
//================================================
Any idea on how to solve it...?
Thank again !
@mparama
mparama
12 Aug 2017, 00:13
I think you can put the slippage limit :
[Parameter("Market Range - Slippage", DefaultValue = 3.5)]
public double slippage { get; set; }
..............................................
...................................
ExecuteMarketOrder(TradeType.Buy, Symbol, OrderSize, Label, SL, TP, slippage);
@mparama
mparama
03 Sep 2018, 16:10
RE: Thank you !
Panagiotis Charalampous said:
thanks anyway !
@mparama