27 lines
323 B
MQL5
27 lines
323 B
MQL5
|
|
#property copyright "Copyright 2023, M & Q Investment Group"
|
|
#property link "https://www.mql5.com"
|
|
#property version "1.00"
|
|
|
|
int OnInit()
|
|
{
|
|
|
|
ArrayCopy()
|
|
|
|
ArraySetAsSeries()
|
|
|
|
return(INIT_SUCCEEDED);
|
|
}
|
|
|
|
void OnDeinit(const int reason)
|
|
{
|
|
|
|
|
|
}
|
|
|
|
void OnTick()
|
|
{
|
|
|
|
|
|
}
|
|
|