mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-03 14:07:48 +00:00
13 lines
377 B
C#
13 lines
377 B
C#
using MtApi.Monitors.Triggers;
|
|
|
|
namespace MtApi.Monitors
|
|
{
|
|
public class TimeframeTradeMonitor : TradeMonitor
|
|
{
|
|
public TimeframeTradeMonitor(MtApiClient apiClient)
|
|
: base(apiClient, new NewBarTrigger(apiClient))
|
|
{
|
|
SyncTrigger = true; //Sync-Trigger set to true, to have the same behavior as before
|
|
}
|
|
}
|
|
} |