Logs
Use logs to debug and analyze the behavior of your strategy.
Example
public override void RegisterActions()
{
OnUpdateOf(dayBars).Do(() =>
{
// define action
});
}public override void RegisterActions()
{
OnUpdateOf(dayBars).Do(() =>
{
Log($"Hello world. Today is {Time}.");
});
}
Last updated