MnQInvestmentDevelopment/MnQInvestment/00_StrategyswithSimon/SteinDerWeisen.mq5

30 lines
443 B
MQL5
Raw Permalink Normal View History

2025-05-30 15:08:44 +02:00
#include <trade/trade.mqh>
#property copyright "Copyright 2023, M & Q Investment Group"
#property link ""
#property version "1.00"
int OnInit()
{
return(INIT_SUCCEEDED);
}
void OnDeinit(const int reason)
{
}
void OnTick()
{
int handleSlowMa = iMA(_Symbol,PERIOD_CURRENT,200,0,MODE_SMA,PRICE_CLOSE);
double slowMaArray[];
CopyBuffer(handleSlowMa,0,0)
}