Fix download links

This commit is contained in:
ironsan2kk-pixel
2026-06-08 10:36:15 +02:00
commit 6450d1efc6
138 changed files with 71156 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
//+------------------------------------------------------------------+
//| TrendEngine Core Demo MQL5 EA |
//| Author: Hossein Asgari (Fintor AI) |
//+------------------------------------------------------------------+
#property strict
#property copyright "Hossein Asgari - Fintor AI"
#property link "https://fintorai.com"
#property version "1.00"
#include <TrendEngine/TrendEngineCore.mqh>
//--- inputs
input double InpLots = 0.10;
input int InpMaFast = 20;
input int InpMaSlow = 50;
input int InpSlPoints = 300;
input int InpTpPoints = 600;
//--- core engine
CTrendEngineCore g_engine;
//+------------------------------------------------------------------+
int OnInit()
{
g_engine.Init(InpLots,InpMaFast,InpMaSlow,InpSlPoints,InpTpPoints);
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
g_engine.Deinit();
}
//+------------------------------------------------------------------+
void OnTick()
{
g_engine.OnTick();
}
//+------------------------------------------------------------------+
Binary file not shown.