-
Notifications
You must be signed in to change notification settings - Fork 0
La Modedora de iMA #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
//+------------------------------------------------------------------+ datetime MomentoUltimaVela = 0; //+------------------------------------------------------------------+ //--- } ///////////////////////////////////////////////////////// TRING TO SET THE BUY/SELL TO PAIR…////////
} |
//+------------------------------------------------------------------+
//| _Siempre Positivo v005.mq4 |
//| Copyright 2021, fdfont GDLab |
//| https://www.globaldesign.cloud |
//+------------------------------------------------------------------+
#property copyright "Copyright 2021, fdfont GDLab"
#property link "https://www.globaldesign.cloud"
#property version "5.00"
#property strict
input double lots = 0.01;
input int take_profit = 3;
input double stop_loss = 0;
input int magic = 10;
input int Start_Time = 02; // Time to allow trading to start ( hours of 24 hr clock ) 0 for both disables
input int Finish_Time = 21; // Time to stop trading ( hours of 24 hr clock ) 0 for both disables
datetime MomentoUltimaVela = 0;
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---
int MAX_ORDERS = 8;
int MAX_ORDERS_BUY = 4;
int MAX_ORDERS_SELL = 4;
}
//+------------------------------------------------------------------+
The text was updated successfully, but these errors were encountered: