对不起,我的英语。我不是母语人士。
大家好,我有一个关于派恩脚本停下来的家伙。
我正在尝试在策略脚本中进行特定的跟踪。
我想创建一个for循环,以评估从开放策略日期到今天的所有蜡烛。
pine脚本的任何变量包含未平仓日期,天数或类似内容吗?
非常感谢您。
答案 0 :(得分:0)
据我所知,没有任何记录入场日期的变量,但是由于这是您的策略,因此您应该知道其进入/退出交易的时间,因此在这些事件发生时,您应该能够保存> not 3456
error: ... No instance for (Num Bool) arising from the literal ‘3456’ ...
发生。
此外,与其等待许多条形消失并通过 Hipnosoftpage.IsVisible = false;
ErroRede = true;
DisplayAlert("Sem Conexão", "Verifique sua conexão com a internet.", "Tentar Novamente").ContinueWith(t =>
{
Hipnosoftpage.Reload();
}, TaskScheduler.FromCurrentSynchronizationContext());
}
var url = e.Url;
if (url.StartsWith("whatsapp://", StringComparison.InvariantCultureIgnoreCase))
{
try
{
Device.OpenUri(new Uri(url));
Hipnosoftpage.GoBack();
}
// Can not catch Android exception type in NetStd/PCL library, so hack it...
catch (Exception ex) when (ex.Message.StartsWith("No Activity found to handle Intent", StringComparison.InvariantCulture))
{
// WhatsApp not installed : Android.Content.ActivityNotFoundException: No Activity found to handle Intent
Console.WriteLine(ex);
}
}
}
循环返回它们,不如从条件触发那一刻起就开始跟踪所需的任何信息,这将更有效率。对于大多数需求,这应该允许您使用time
循环来放弃。
答案 1 :(得分:0)
我正在阅读以下线程:Strategy with sample code
,并注意到它在跟踪尾部有一些工作。基本上,您应该能够找到一些可用于尾随止损的松木脚本,并根据需要进行调整。