Вот код, который отправляет заявки на покупку продажу по анализу младшего ТФ, здесь он M1 (Input2 он же I2), в лог пишу событие операции.
Код: Выделить всё
function Initialize()
{
StrategyName = "Inputs01";
AddInput("Input1", Inputs.Candle, 60, true, "GAZP=МБ ЦК");
AddInput("Input2", Inputs.Candle, 1, false, "GAZP=МБ ЦК");
}
А результат всего 2 операции за день:
function OnUpdate()
{
var I1 = Input1;
var I2 = Input2;
if (I2.Close[0] > I2.High[1])
{
EnterLong();
WriteLine("c:\\temp\\inputs.txt", String.Format("BUY: Input2: BarDate:{0} BarTime:{1}", Input2.BarDate(), Input2.BarTime()));
}
if (I2.Close[0] < I2.Low[1])
{
EnterShort();
WriteLine("c:\\temp\\inputs.txt", String.Format("SELL: Input2: BarDate:{0} BarTime:{1}", Input2.BarDate(), Input2.BarTime()));
}
}
- Inputs-04.png (18.88 КБ) 23080 просмотров
- Inputs-03.png (15.03 КБ) 23090 просмотров
- Inputs-02.png (22.29 КБ) 23090 просмотров
А должны были:
из лога видно, что не 2

т.е. режет операции по торговому ТФ только одна операция в рамках одного бара этого ТФ
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:00:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:02:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:07:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:15:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:17:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:18:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:20:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:22:00
► Показать
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:24:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:27:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:28:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:30:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:31:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:34:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:35:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:38:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:42:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:48:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:53:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:58:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:00:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:01:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:04:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:06:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:07:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:09:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:16:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:18:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:19:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:21:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:22:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:27:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:29:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:32:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:33:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:37:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:40:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:42:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:45:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:46:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:48:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:49:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:50:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:53:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:56:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:00:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:03:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:06:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:07:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:09:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:10:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:15:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:17:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:21:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:24:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:27:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:30:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:32:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:36:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:38:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:40:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:45:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:48:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:50:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:55:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:59:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:00:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:03:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:04:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:05:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:14:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:15:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:20:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:21:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:22:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:24:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:25:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:27:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:33:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:34:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:35:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:37:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:38:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:47:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:48:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:52:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:57:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:03:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:07:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:08:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:11:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:17:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:20:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:22:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:24:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:26:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:29:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:35:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:37:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:39:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:41:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:42:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:48:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:49:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:50:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:58:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:00:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:02:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:03:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:04:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:10:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:14:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:18:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:20:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:27:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:30:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:33:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:40:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:45:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:46:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:47:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:49:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:52:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:56:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:00:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:02:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:04:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:08:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:12:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:14:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:17:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:19:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:20:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:23:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:25:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:28:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:31:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:32:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:38:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:39:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:41:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:45:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:50:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:51:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:53:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:57:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:01:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:02:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:03:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:05:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:07:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:10:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:17:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:19:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:21:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:29:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:34:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:40:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:50:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:53:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:55:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:56:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:57:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:58:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:10:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:13:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:20:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:23:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:30:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:31:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:32:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:37:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:27:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:28:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:30:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:31:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:34:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:35:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:38:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:42:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:48:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:53:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:10:58:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:00:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:01:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:04:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:06:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:07:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:09:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:16:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:18:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:19:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:21:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:22:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:27:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:29:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:32:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:33:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:37:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:40:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:42:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:45:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:46:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:48:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:49:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:50:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:53:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:11:56:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:00:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:03:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:06:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:07:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:09:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:10:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:15:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:17:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:21:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:24:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:27:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:30:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:32:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:36:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:38:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:40:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:45:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:48:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:50:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:55:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:12:59:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:00:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:03:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:04:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:05:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:14:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:15:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:20:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:21:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:22:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:24:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:25:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:27:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:33:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:34:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:35:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:37:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:38:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:47:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:48:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:52:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:13:57:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:03:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:07:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:08:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:11:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:17:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:20:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:22:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:24:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:26:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:29:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:35:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:37:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:39:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:41:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:42:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:47:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:48:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:49:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:50:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:14:58:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:00:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:02:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:03:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:04:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:10:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:14:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:18:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:20:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:27:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:28:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:30:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:33:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:40:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:45:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:46:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:47:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:49:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:52:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:54:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:15:56:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:00:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:02:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:04:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:08:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:12:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:14:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:17:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:19:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:20:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:23:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:25:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:28:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:31:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:32:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:38:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:39:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:41:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:45:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:50:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:51:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:53:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:16:57:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:01:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:02:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:03:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:05:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:07:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:10:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:13:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:17:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:19:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:21:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:29:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:34:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:40:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:43:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:50:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:53:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:55:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:56:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:57:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:17:58:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:10:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:13:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:20:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:23:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:30:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:31:00
BUY: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:32:00
SELL: Input2: BarDate:09.04.2021 0:00:00 BarTime:18:37:00