Why is Symbol.Spread not updated during OnBar?
Why is Symbol.Spread not updated during OnBar?
08 Dec 2021, 03:34
Hi everyone:
Why does _s.Spread never update in the OnBar method?
When the sample code below runs, the value of the spread property _never_ changes.
Tick events happen during the OnBar, so how come the Spread property of the Symbol object isn't updated?
Is the Symbol object blocked or locked when an OnBar event occurs?
If so, how can we force or get the latest Symbol.Spread data?
Here is the sample log output:
08/12/2021 09:24:42.837 | cBot "BugBot" was stopped for GBPNZD, m5.
08/12/2021 09:24:00.588 | OB01: Waiting 1 minutes for the market and spread 3.29999999999941 (pips) to settle @ 8/12/2021 9:24:01 AM.
08/12/2021 09:24:00.588 | OB01: Sleeping over at 8/12/2021 9:24:01 AM. Spread now 3.29999999999941 pips
08/12/2021 09:23:00.588 | OB01: Waiting 1 minutes for the market and spread 3.29999999999941 (pips) to settle @ 8/12/2021 9:23:01 AM.
08/12/2021 09:23:00.588 | OB01: Sleeping over at 8/12/2021 9:23:01 AM. Spread now 3.29999999999941 pips
08/12/2021 09:22:00.588 | OB01: Waiting 1 minutes for the market and spread 3.29999999999941 (pips) to settle @ 8/12/2021 9:22:01 AM.
08/12/2021 09:22:00.588 | OB01: Sleeping over at 8/12/2021 9:22:01 AM. Spread now 3.29999999999941 pips
08/12/2021 09:21:00.588 | OB01: Waiting 1 minutes for the market and spread 3.29999999999941 (pips) to settle @ 8/12/2021 9:21:01 AM.
08/12/2021 09:21:00.588 | OB00: Sleeping over at 8/12/2021 9:21:01 AM. Spread now 3.29999999999941 pips
08/12/2021 09:20:00.588 | OB00: Waiting 1 minutes for the market and spread 3.29999999999941 (pips) to settle @ 8/12/2021 9:20:01 AM.
08/12/2021 09:20:00.588 | -------------------- Starting OnBar for "testing bug bot". --------------------
08/12/2021 09:20:00.588 | -------------------- End OnTick 00.0000003 --------------------
08/12/2021 09:20:00.588 | -------------------- Starting OnTick for "testing bug bot". TC 4 --------------------
08/12/2021 09:19:59.431 | -------------------- End OnTick 00.0000001 --------------------
08/12/2021 09:19:59.431 | -------------------- Starting OnTick for "testing bug bot". TC 3 --------------------
08/12/2021 09:19:58.338 | -------------------- End OnTick 00.0000002 --------------------
08/12/2021 09:19:58.338 | -------------------- Starting OnTick for "testing bug bot". TC 2 --------------------
08/12/2021 09:19:51.228 | -------------------- End OnTick 00.0000008 --------------------
08/12/2021 09:19:51.228 | -------------------- Starting OnTick for "testing bug bot". TC 1 --------------------
08/12/2021 09:19:50.103 | -------------------- End OnTick 00.0003159 --------------------
08/12/2021 09:19:50.103 | -------------------- Starting OnTick for "testing bug bot". TC 0 --------------------
08/12/2021 09:19:47.463 | cBot "BugBot" was started successfully for GBPNZD, m5.
Here is the sample code used:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
namespace cAlgo.Robots
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class BugBot : Robot
{
private int _tickCount = 0;
//for measuring the speed of methods
private Stopwatch _swOnBar = null;
private Stopwatch _swOnTick = null;
private Symbol _s;
private string _positionLabel = "testing bug bot";
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#region EventMethods
/// <summary>
/// Runs once when the robot is started.
/// </summary>
protected override void OnStart()
{
if (_swOnBar == null)
_swOnBar = new Stopwatch();
if (_swOnTick == null)
_swOnTick = new Stopwatch();
_s = Symbol;
}
/// <summary>
/// OnBar
/// </summary>
protected override void OnBar()
{
_swOnBar.Reset();
string methodName = "OnBar";
Print("-------------------- Starting {0} for \"{1}\". --------------------", methodName, _positionLabel);
_swOnBar.Start();
Print("OB00: Waiting 1 minutes for the market and spread {0} (pips) to settle @ {1}.", (_s.Spread / _s.PipSize), DateTime.Now);
Thread.Sleep(60000);
Print("OB00: Sleeping over at {0}. Spread now {1} pips", DateTime.Now, (_s.Spread / _s.PipSize));
int numTries = 12;
//WHY DOES THE _s.Spread never change here?
//While the bot is running on GBPNZD, I can clearly see ticks come in and the distance between the bid/ask prices fluctuating.
//When I run this on a daily timeframe and set the sleep period to 5
//minutes, over the course of an hour from the OnBar even, the spread
//never changes.
//However, if you put _s.Spread in the Tick event, the spread changes
//frequently during that time. So it's definitely something to do
//with OnBar.
while ((_s.Spread / _s.PipSize) > 2 && numTries > 0)
{
Print("OB01: Waiting 1 minutes for the market and spread {0} (pips) to settle @ {1}.", (_s.Spread / _s.PipSize), DateTime.Now);
Thread.Sleep(60000);
Print("OB01: Sleeping over at {0}. Spread now {1} pips", DateTime.Now, (_s.Spread / _s.PipSize));
numTries -= 1;
}
_swOnBar.Stop();
Print("-------------------- End {0} {1} --------------------", methodName, _swOnBar.Elapsed.ToString("ss\\.fffffff"));
}
/// <summary>
/// OnTick
/// </summary>
protected override void OnTick()
{
_swOnTick.Reset();
string methodName = "OnTick";
Print("-------------------- Starting {0} for \"{1}\". TC {2} --------------------", methodName, _positionLabel, _tickCount);
_swOnTick.Start();
_tickCount += 1;
_swOnTick.Stop();
Print("-------------------- End {0} {1} --------------------", methodName, _swOnTick.Elapsed.ToString("ss\\.fffffff"));
}
#endregion
}
}
Thank you.
Replies
PanagiotisCharalampous
09 Dec 2021, 08:57
Hi firemyst,
cBots run on the same thread as the UI, so when you put the thread to sleep, then the whole thread will sleep. Symbol informaton cannot be updated while the OnBar method is executed. To help you further, you wull need to explain to us what are you trying to achieve.
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
firemyst
09 Dec 2021, 09:45
RE:
PanagiotisCharalampous said:
Hi firemyst,
cBots run on the same thread as the UI, so when you put the thread to sleep, then the whole thread will sleep. Symbol informaton cannot be updated while the OnBar method is executed. To help you further, you wull need to explain to us what are you trying to achieve.
Best Regards,
Panagiotis
HI @Panagiotis:
I'm coding a day trading strategy that only opens positions or manages positions during the "OnBar". This means, after the NY session close. However, as you're aware, the pip spread during that time as the servers around the world reset for the next "trading day" can be HUGE. That is, what might normally be like a 3 pip spread can turn into a possible 17 pip spread temporarily.
So what I want to do is execute the logic when a new bar is formed, but if the spread is greater than say 3 pips (since most pairs are under 3 during normal hours), I want to wait until the spreads return back to some normality. Hence the "while loop" i have in my sample code above. I cannot check if the spread is > 3 and if so, skip until next bar, because it will happen again each day as each new "OnBar" event occurs and the spreads again become greater than normal.
Does that make sense?
Thank you.
@firemyst
PanagiotisCharalampous
09 Dec 2021, 09:53
Hi firemyst,
My suggestion is the followng
- In OnBar enable a timer with an interval e.g. 1 second
- On each timer interval execute your checks and logic. Between the intervals, the main thread is freed to update the information
- After your job is finished, stop the timer
Best Regards,
Panagiotis
Join us on Telegram and Facebook
@PanagiotisCharalampous
firemyst
10 Dec 2021, 02:28
RE:
PanagiotisCharalampous said:
Hi firemyst,
My suggestion is the followng
- In OnBar enable a timer with an interval e.g. 1 second
- On each timer interval execute your checks and logic. Between the intervals, the main thread is freed to update the information
- After your job is finished, stop the timer
Best Regards,
Panagiotis
Thanks @Panagiotis!
I tried the above, and it worked as I wanted. I set the interval for 10 seconds instead of 1 second because the spreads seem to be crazy for almost the full hour.
For everyone's info, here's a sample output showing just how crazily pip spreads occur during the "OnBar" event on the immediate bar(s) after the NY Session close. This is with the GBPNZD pair (with the latest time at the top). That spread is usually 3-4 pips during normal trading hours. The code used to calculate the spread at the time is the exact same code as my sample in my post above.
Time is UTC + 8:
10/12/2021 07:01:13.907 | OBTE02: Spread now 12.7999999999995 (pips) @ 12/10/2021 7:06:51 AM and OBTRA = 0. Skipping this round.
10/12/2021 07:01:03.892 | OBTE01: Waiting for the market and spread 15.5000000000016 (pips) to settle @ 12/10/2021 7:06:41 AM. Retries left: 0
10/12/2021 07:00:53.892 | OBTE01: Waiting for the market and spread 17.3000000000001 (pips) to settle @ 12/10/2021 7:06:31 AM. Retries left: 1
10/12/2021 07:00:43.892 | OBTE01: Waiting for the market and spread 18.2000000000015 (pips) to settle @ 12/10/2021 7:06:21 AM. Retries left: 2
10/12/2021 07:00:33.892 | OBTE01: Waiting for the market and spread 17.5999999999998 (pips) to settle @ 12/10/2021 7:06:11 AM. Retries left: 3
10/12/2021 07:00:23.876 | OBTE01: Waiting for the market and spread 15.1999999999997 (pips) to settle @ 12/10/2021 7:06:01 AM. Retries left: 4
10/12/2021 07:00:13.860 | OBTE01: Waiting for the market and spread 16.8999999999997 (pips) to settle @ 12/10/2021 7:05:51 AM. Retries left: 5
10/12/2021 07:00:03.845 | OBTE01: Waiting for the market and spread 23.9999999999996 (pips) to settle @ 12/10/2021 7:05:41 AM. Retries left: 6
10/12/2021 06:59:53.845 | OBTE01: Waiting for the market and spread 18.3 (pips) to settle @ 12/10/2021 7:05:31 AM. Retries left: 7
10/12/2021 06:59:43.845 | OBTE01: Waiting for the market and spread 18.3 (pips) to settle @ 12/10/2021 7:05:21 AM. Retries left: 8
10/12/2021 06:59:33.829 | OBTE01: Waiting for the market and spread 18.2000000000015 (pips) to settle @ 12/10/2021 7:05:11 AM. Retries left: 9
10/12/2021 06:59:23.813 | OBTE01: Waiting for the market and spread 18.9000000000017 (pips) to settle @ 12/10/2021 7:05:01 AM. Retries left: 10
10/12/2021 06:59:13.813 | OBTE01: Waiting for the market and spread 18.4999999999991 (pips) to settle @ 12/10/2021 7:04:51 AM. Retries left: 11
10/12/2021 06:59:03.798 | OBTE01: Waiting for the market and spread 18.4999999999991 (pips) to settle @ 12/10/2021 7:04:41 AM. Retries left: 12
10/12/2021 06:58:53.798 | OBTE01: Waiting for the market and spread 19.0000000000001 (pips) to settle @ 12/10/2021 7:04:31 AM. Retries left: 13
10/12/2021 06:58:43.798 | OBTE01: Waiting for the market and spread 19.0000000000001 (pips) to settle @ 12/10/2021 7:04:21 AM. Retries left: 14
10/12/2021 06:58:33.767 | OBTE01: Waiting for the market and spread 19.0000000000001 (pips) to settle @ 12/10/2021 7:04:11 AM. Retries left: 15
10/12/2021 06:58:23.767 | OBTE01: Waiting for the market and spread 18.4999999999991 (pips) to settle @ 12/10/2021 7:04:01 AM. Retries left: 16
10/12/2021 06:58:13.751 | OBTE01: Waiting for the market and spread 18.7000000000004 (pips) to settle @ 12/10/2021 7:03:51 AM. Retries left: 17
10/12/2021 06:58:03.751 | OBTE01: Waiting for the market and spread 19.6999999999981 (pips) to settle @ 12/10/2021 7:03:41 AM. Retries left: 18
10/12/2021 06:57:53.735 | OBTE01: Waiting for the market and spread 19.0999999999986 (pips) to settle @ 12/10/2021 7:03:31 AM. Retries left: 19
10/12/2021 06:57:43.673 | OBTE01: Waiting for the market and spread 18.8999999999995 (pips) to settle @ 12/10/2021 7:03:21 AM. Retries left: 20
10/12/2021 06:57:33.673 | OBTE01: Waiting for the market and spread 19.1000000000008 (pips) to settle @ 12/10/2021 7:03:11 AM. Retries left: 21
10/12/2021 06:57:23.657 | OBTE01: Waiting for the market and spread 19.1000000000008 (pips) to settle @ 12/10/2021 7:03:01 AM. Retries left: 22
10/12/2021 06:57:13.657 | OBTE01: Waiting for the market and spread 18.8999999999995 (pips) to settle @ 12/10/2021 7:02:51 AM. Retries left: 23
10/12/2021 06:57:03.657 | OBTE01: Waiting for the market and spread 19.2999999999999 (pips) to settle @ 12/10/2021 7:02:41 AM. Retries left: 24
10/12/2021 06:56:53.642 | OBTE01: Waiting for the market and spread 22.1000000000005 (pips) to settle @ 12/10/2021 7:02:31 AM. Retries left: 25
10/12/2021 06:56:43.642 | OBTE01: Waiting for the market and spread 21.9999999999998 (pips) to settle @ 12/10/2021 7:02:21 AM. Retries left: 26
10/12/2021 06:56:33.626 | OBTE01: Waiting for the market and spread 21.1000000000006 (pips) to settle @ 12/10/2021 7:02:11 AM. Retries left: 27
10/12/2021 06:56:23.626 | OBTE01: Waiting for the market and spread 21.4000000000003 (pips) to settle @ 12/10/2021 7:02:01 AM. Retries left: 28
10/12/2021 06:56:13.610 | OBTE01: Waiting for the market and spread 21.199999999999 (pips) to settle @ 12/10/2021 7:01:51 AM. Retries left: 29
10/12/2021 06:56:03.610 | OBTE01: Waiting for the market and spread 21.7000000000001 (pips) to settle @ 12/10/2021 7:01:41 AM. Retries left: 30
10/12/2021 06:55:53.595 | OBTE01: Waiting for the market and spread 21.9000000000014 (pips) to settle @ 12/10/2021 7:01:31 AM. Retries left: 31
10/12/2021 06:55:43.579 | OBTE01: Waiting for the market and spread 20.0999999999985 (pips) to settle @ 12/10/2021 7:01:21 AM. Retries left: 32
10/12/2021 06:55:33.547 | OBTE01: Waiting for the market and spread 20 (pips) to settle @ 12/10/2021 7:01:11 AM. Retries left: 33
10/12/2021 06:55:23.547 | OBTE01: Waiting for the market and spread 20.0999999999985 (pips) to settle @ 12/10/2021 7:01:01 AM. Retries left: 34
10/12/2021 06:55:13.547 | OBTE01: Waiting for the market and spread 20.9000000000015 (pips) to settle @ 12/10/2021 7:00:51 AM. Retries left: 35
10/12/2021 06:55:03.532 | OBTE01: Waiting for the market and spread 20.9999999999999 (pips) to settle @ 12/10/2021 7:00:41 AM. Retries left: 36
10/12/2021 06:54:53.532 | OBTE01: Waiting for the market and spread 20.9999999999999 (pips) to settle @ 12/10/2021 7:00:31 AM. Retries left: 37
10/12/2021 06:54:43.516 | OBTE01: Waiting for the market and spread 20.9999999999999 (pips) to settle @ 12/10/2021 7:00:21 AM. Retries left: 38
10/12/2021 06:54:33.501 | OBTE01: Waiting for the market and spread 21.0999999999983 (pips) to settle @ 12/10/2021 7:00:11 AM. Retries left: 39
10/12/2021 06:54:23.485 | OBTE01: Waiting for the market and spread 21.1000000000006 (pips) to settle @ 12/10/2021 7:00:01 AM. Retries left: 40
10/12/2021 06:54:13.485 | OBTE01: Waiting for the market and spread 25.5000000000005 (pips) to settle @ 12/10/2021 6:59:51 AM. Retries left: 41
10/12/2021 06:54:03.485 | OBTE01: Waiting for the market and spread 20.4000000000004 (pips) to settle @ 12/10/2021 6:59:41 AM. Retries left: 42
10/12/2021 06:53:53.469 | OBTE01: Waiting for the market and spread 20.1000000000007 (pips) to settle @ 12/10/2021 6:59:31 AM. Retries left: 43
10/12/2021 06:53:43.454 | OBTE01: Waiting for the market and spread 20.7000000000002 (pips) to settle @ 12/10/2021 6:59:21 AM. Retries left: 44
10/12/2021 06:53:33.454 | OBTE01: Waiting for the market and spread 20.7000000000002 (pips) to settle @ 12/10/2021 6:59:11 AM. Retries left: 45
10/12/2021 06:53:23.454 | OBTE01: Waiting for the market and spread 20.9999999999999 (pips) to settle @ 12/10/2021 6:59:01 AM. Retries left: 46
10/12/2021 06:53:13.454 | OBTE01: Waiting for the market and spread 20.7000000000002 (pips) to settle @ 12/10/2021 6:58:51 AM. Retries left: 47
10/12/2021 06:53:03.438 | OBTE01: Waiting for the market and spread 20.7000000000002 (pips) to settle @ 12/10/2021 6:58:41 AM. Retries left: 48
10/12/2021 06:52:53.423 | OBTE01: Waiting for the market and spread 21.199999999999 (pips) to settle @ 12/10/2021 6:58:31 AM. Retries left: 49
10/12/2021 06:52:43.423 | OBTE01: Waiting for the market and spread 21.2999999999997 (pips) to settle @ 12/10/2021 6:58:21 AM. Retries left: 50
10/12/2021 06:52:33.423 | OBTE01: Waiting for the market and spread 21.4000000000003 (pips) to settle @ 12/10/2021 6:58:11 AM. Retries left: 51
10/12/2021 06:52:23.407 | OBTE01: Waiting for the market and spread 21.4000000000003 (pips) to settle @ 12/10/2021 6:58:01 AM. Retries left: 52
10/12/2021 06:52:13.407 | OBTE01: Waiting for the market and spread 21.3000000000019 (pips) to settle @ 12/10/2021 6:57:51 AM. Retries left: 53
10/12/2021 06:52:03.392 | OBTE01: Waiting for the market and spread 20.9000000000015 (pips) to settle @ 12/10/2021 6:57:41 AM. Retries left: 54
10/12/2021 06:51:53.392 | OBTE01: Waiting for the market and spread 20.9000000000015 (pips) to settle @ 12/10/2021 6:57:31 AM. Retries left: 55
10/12/2021 06:51:43.376 | OBTE01: Waiting for the market and spread 20.7000000000002 (pips) to settle @ 12/10/2021 6:57:21 AM. Retries left: 56
10/12/2021 06:51:33.360 | OBTE01: Waiting for the market and spread 21.4000000000003 (pips) to settle @ 12/10/2021 6:57:11 AM. Retries left: 57
10/12/2021 06:51:23.363 | OBTE01: Waiting for the market and spread 21.4000000000003 (pips) to settle @ 12/10/2021 6:57:01 AM. Retries left: 58
10/12/2021 06:51:13.363 | OBTE01: Waiting for the market and spread 21.199999999999 (pips) to settle @ 12/10/2021 6:56:51 AM. Retries left: 59
10/12/2021 06:51:03.363 | OBTE01: Waiting for the market and spread 20.9999999999999 (pips) to settle @ 12/10/2021 6:56:41 AM. Retries left: 60
10/12/2021 06:50:53.348 | OBTE01: Waiting for the market and spread 20.9999999999999 (pips) to settle @ 12/10/2021 6:56:31 AM. Retries left: 61
10/12/2021 06:50:43.348 | OBTE01: Waiting for the market and spread 20.9999999999999 (pips) to settle @ 12/10/2021 6:56:21 AM. Retries left: 62
10/12/2021 06:50:33.332 | OBTE01: Waiting for the market and spread 21.2000000000012 (pips) to settle @ 12/10/2021 6:56:11 AM. Retries left: 63
10/12/2021 06:50:23.343 | OBTE01: Waiting for the market and spread 21.7000000000001 (pips) to settle @ 12/10/2021 6:56:01 AM. Retries left: 64
10/12/2021 06:50:13.343 | OBTE01: Waiting for the market and spread 22.4000000000002 (pips) to settle @ 12/10/2021 6:55:51 AM. Retries left: 65
10/12/2021 06:50:03.327 | OBTE01: Waiting for the market and spread 22.4000000000002 (pips) to settle @ 12/10/2021 6:55:41 AM. Retries left: 66
10/12/2021 06:49:53.327 | OBTE01: Waiting for the market and spread 21.8999999999991 (pips) to settle @ 12/10/2021 6:55:31 AM. Retries left: 67
10/12/2021 06:49:43.312 | OBTE01: Waiting for the market and spread 22.4000000000002 (pips) to settle @ 12/10/2021 6:55:21 AM. Retries left: 68
10/12/2021 06:49:33.296 | OBTE01: Waiting for the market and spread 22.4999999999986 (pips) to settle @ 12/10/2021 6:55:11 AM. Retries left: 69
10/12/2021 06:49:23.296 | OBTE01: Waiting for the market and spread 22.1999999999989 (pips) to settle @ 12/10/2021 6:55:01 AM. Retries left: 70
10/12/2021 06:49:13.296 | OBTE01: Waiting for the market and spread 22.2000000000011 (pips) to settle @ 12/10/2021 6:54:51 AM. Retries left: 71
10/12/2021 06:49:03.281 | OBTE01: Waiting for the market and spread 22.2000000000011 (pips) to settle @ 12/10/2021 6:54:41 AM. Retries left: 72
10/12/2021 06:48:53.265 | OBTE01: Waiting for the market and spread 22.899999999999 (pips) to settle @ 12/10/2021 6:54:31 AM. Retries left: 73
10/12/2021 06:48:43.249 | OBTE01: Waiting for the market and spread 22.899999999999 (pips) to settle @ 12/10/2021 6:54:21 AM. Retries left: 74
10/12/2021 06:48:33.249 | OBTE01: Waiting for the market and spread 22.6999999999999 (pips) to settle @ 12/10/2021 6:54:11 AM. Retries left: 75
10/12/2021 06:48:23.234 | OBTE01: Waiting for the market and spread 22.6999999999999 (pips) to settle @ 12/10/2021 6:54:01 AM. Retries left: 76
10/12/2021 06:48:13.218 | OBTE01: Waiting for the market and spread 22.6999999999999 (pips) to settle @ 12/10/2021 6:53:51 AM. Retries left: 77
10/12/2021 06:48:03.218 | OBTE01: Waiting for the market and spread 22.5999999999993 (pips) to settle @ 12/10/2021 6:53:41 AM. Retries left: 78
10/12/2021 06:47:53.218 | OBTE01: Waiting for the market and spread 22.4999999999986 (pips) to settle @ 12/10/2021 6:53:31 AM. Retries left: 79
10/12/2021 06:47:43.202 | OBTE01: Waiting for the market and spread 22.6999999999999 (pips) to settle @ 12/10/2021 6:53:21 AM. Retries left: 80
10/12/2021 06:47:33.187 | OBTE01: Waiting for the market and spread 23.6999999999998 (pips) to settle @ 12/10/2021 6:53:11 AM. Retries left: 81
10/12/2021 06:47:23.187 | OBTE01: Waiting for the market and spread 23.8999999999989 (pips) to settle @ 12/10/2021 6:53:01 AM. Retries left: 82
10/12/2021 06:47:13.171 | OBTE01: Waiting for the market and spread 23.6999999999998 (pips) to settle @ 12/10/2021 6:52:51 AM. Retries left: 83
10/12/2021 06:47:03.171 | OBTE01: Waiting for the market and spread 23.5999999999992 (pips) to settle @ 12/10/2021 6:52:41 AM. Retries left: 84
10/12/2021 06:46:53.156 | OBTE01: Waiting for the market and spread 23.5000000000007 (pips) to settle @ 12/10/2021 6:52:31 AM. Retries left: 85
10/12/2021 06:46:43.156 | OBTE01: Waiting for the market and spread 23.5000000000007 (pips) to settle @ 12/10/2021 6:52:21 AM. Retries left: 86
10/12/2021 06:46:33.156 | OBTE01: Waiting for the market and spread 23.2999999999994 (pips) to settle @ 12/10/2021 6:52:11 AM. Retries left: 87
10/12/2021 06:46:23.140 | OBTE01: Waiting for the market and spread 23.2999999999994 (pips) to settle @ 12/10/2021 6:52:01 AM. Retries left: 88
10/12/2021 06:46:13.140 | OBTE01: Waiting for the market and spread 22.7999999999984 (pips) to settle @ 12/10/2021 6:51:51 AM. Retries left: 89
10/12/2021 06:46:03.140 | OBTE01: Waiting for the market and spread 22.899999999999 (pips) to settle @ 12/10/2021 6:51:41 AM. Retries left: 90
10/12/2021 06:45:53.124 | OBTE01: Waiting for the market and spread 22.6999999999999 (pips) to settle @ 12/10/2021 6:51:31 AM. Retries left: 91
10/12/2021 06:45:43.109 | OBTE01: Waiting for the market and spread 23.8000000000005 (pips) to settle @ 12/10/2021 6:51:21 AM. Retries left: 92
10/12/2021 06:45:33.109 | OBTE01: Waiting for the market and spread 23.9999999999996 (pips) to settle @ 12/10/2021 6:51:11 AM. Retries left: 93
10/12/2021 06:45:23.107 | OBTE01: Waiting for the market and spread 24.2999999999993 (pips) to settle @ 12/10/2021 6:51:01 AM. Retries left: 94
10/12/2021 06:45:13.091 | OBTE01: Waiting for the market and spread 24.9999999999995 (pips) to settle @ 12/10/2021 6:50:50 AM. Retries left: 95
10/12/2021 06:45:03.091 | OBTE01: Waiting for the market and spread 24.2999999999993 (pips) to settle @ 12/10/2021 6:50:40 AM. Retries left: 96
10/12/2021 06:44:53.075 | OBTE01: Waiting for the market and spread 24.9999999999995 (pips) to settle @ 12/10/2021 6:50:30 AM. Retries left: 97
10/12/2021 06:44:43.060 | OBTE01: Waiting for the market and spread 24.9999999999995 (pips) to settle @ 12/10/2021 6:50:20 AM. Retries left: 98
10/12/2021 06:44:33.044 | OBTE01: Waiting for the market and spread 21.8999999999991 (pips) to settle @ 12/10/2021 6:50:10 AM. Retries left: 99
10/12/2021 06:44:23.078 | OBTE01: Waiting for the market and spread 21.8999999999991 (pips) to settle @ 12/10/2021 6:50:00 AM. Retries left: 100
10/12/2021 06:44:13.063 | OBTE01: Waiting for the market and spread 22.4000000000002 (pips) to settle @ 12/10/2021 6:49:50 AM. Retries left: 101
10/12/2021 06:44:03.047 | OBTE01: Waiting for the market and spread 23.8999999999989 (pips) to settle @ 12/10/2021 6:49:40 AM. Retries left: 102
10/12/2021 06:43:53.031 | OBTE01: Waiting for the market and spread 25.599999999999 (pips) to settle @ 12/10/2021 6:49:30 AM. Retries left: 103
10/12/2021 06:43:43.031 | OBTE01: Waiting for the market and spread 25.599999999999 (pips) to settle @ 12/10/2021 6:49:20 AM. Retries left: 104
10/12/2021 06:43:33.016 | OBTE01: Waiting for the market and spread 25.6999999999996 (pips) to settle @ 12/10/2021 6:49:10 AM. Retries left: 105
10/12/2021 06:43:23.016 | OBTE01: Waiting for the market and spread 25.3999999999999 (pips) to settle @ 12/10/2021 6:49:00 AM. Retries left: 106
10/12/2021 06:43:13.000 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:48:50 AM. Retries left: 107
10/12/2021 06:43:02.984 | OBTE01: Waiting for the market and spread 26.1999999999984 (pips) to settle @ 12/10/2021 6:48:40 AM. Retries left: 108
10/12/2021 06:42:52.984 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:48:30 AM. Retries left: 109
10/12/2021 06:42:42.984 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:48:20 AM. Retries left: 110
10/12/2021 06:42:32.969 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:48:10 AM. Retries left: 111
10/12/2021 06:42:22.969 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:48:00 AM. Retries left: 112
10/12/2021 06:42:12.953 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:47:50 AM. Retries left: 113
10/12/2021 06:42:02.938 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:47:40 AM. Retries left: 114
10/12/2021 06:41:52.938 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:47:30 AM. Retries left: 115
10/12/2021 06:41:42.938 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:47:20 AM. Retries left: 116
10/12/2021 06:41:32.922 | OBTE01: Waiting for the market and spread 26.9999999999992 (pips) to settle @ 12/10/2021 6:47:10 AM. Retries left: 117
10/12/2021 06:41:22.922 | OBTE01: Waiting for the market and spread 26.9999999999992 (pips) to settle @ 12/10/2021 6:47:00 AM. Retries left: 118
10/12/2021 06:41:12.907 | OBTE01: Waiting for the market and spread 26.8999999999986 (pips) to settle @ 12/10/2021 6:46:50 AM. Retries left: 119
10/12/2021 06:41:02.891 | OBTE01: Waiting for the market and spread 27.2000000000006 (pips) to settle @ 12/10/2021 6:46:40 AM. Retries left: 120
10/12/2021 06:40:52.875 | OBTE01: Waiting for the market and spread 27.2000000000006 (pips) to settle @ 12/10/2021 6:46:30 AM. Retries left: 121
10/12/2021 06:40:42.875 | OBTE01: Waiting for the market and spread 27.5000000000003 (pips) to settle @ 12/10/2021 6:46:20 AM. Retries left: 122
10/12/2021 06:40:32.860 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:46:10 AM. Retries left: 123
10/12/2021 06:40:22.844 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:46:00 AM. Retries left: 124
10/12/2021 06:40:12.829 | OBTE01: Waiting for the market and spread 26.5000000000004 (pips) to settle @ 12/10/2021 6:45:50 AM. Retries left: 125
10/12/2021 06:40:02.813 | OBTE01: Waiting for the market and spread 24.6999999999997 (pips) to settle @ 12/10/2021 6:45:40 AM. Retries left: 126
10/12/2021 06:39:52.813 | OBTE01: Waiting for the market and spread 26.6999999999995 (pips) to settle @ 12/10/2021 6:45:30 AM. Retries left: 127
10/12/2021 06:39:42.797 | OBTE01: Waiting for the market and spread 26.5000000000004 (pips) to settle @ 12/10/2021 6:45:20 AM. Retries left: 128
10/12/2021 06:39:32.797 | OBTE01: Waiting for the market and spread 26.5999999999988 (pips) to settle @ 12/10/2021 6:45:10 AM. Retries left: 129
10/12/2021 06:39:22.797 | OBTE01: Waiting for the market and spread 26.6000000000011 (pips) to settle @ 12/10/2021 6:45:00 AM. Retries left: 130
10/12/2021 06:39:12.782 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:44:50 AM. Retries left: 131
10/12/2021 06:39:02.766 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:44:40 AM. Retries left: 132
10/12/2021 06:38:52.766 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:44:30 AM. Retries left: 133
10/12/2021 06:38:42.750 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:44:20 AM. Retries left: 134
10/12/2021 06:38:32.735 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:44:10 AM. Retries left: 135
10/12/2021 06:38:22.720 | OBTE01: Waiting for the market and spread 28.0999999999998 (pips) to settle @ 12/10/2021 6:44:00 AM. Retries left: 136
10/12/2021 06:38:12.704 | OBTE01: Waiting for the market and spread 21.2999999999997 (pips) to settle @ 12/10/2021 6:43:50 AM. Retries left: 137
10/12/2021 06:38:02.704 | OBTE01: Waiting for the market and spread 21.2999999999997 (pips) to settle @ 12/10/2021 6:43:40 AM. Retries left: 138
10/12/2021 06:37:52.689 | OBTE01: Waiting for the market and spread 21.2999999999997 (pips) to settle @ 12/10/2021 6:43:30 AM. Retries left: 139
10/12/2021 06:37:42.673 | OBTE01: Waiting for the market and spread 21.500000000001 (pips) to settle @ 12/10/2021 6:43:20 AM. Retries left: 140
10/12/2021 06:37:32.673 | OBTE01: Waiting for the market and spread 20.8000000000008 (pips) to settle @ 12/10/2021 6:43:10 AM. Retries left: 141
10/12/2021 06:37:22.688 | OBTE01: Waiting for the market and spread 21.0000000000021 (pips) to settle @ 12/10/2021 6:43:00 AM. Retries left: 142
@firemyst
firemyst
09 Dec 2021, 01:28
@amusleh?
@Panagiotis?
@Spotware?
@firemyst