Fernando Jose Velasco Borea
Fernando Jose Velasco Borea
  • Information
8+ years
experience
3
products
43
demo versions
0
jobs
0
signals
0
subscribers
Fernando Jose Velasco Borea
Added topic Can I get the profit or loss from the TP and SL with a Function?[Code Help]
Hello guys! I noticed today that if I put the mouse over the SL or TP of an order it shows the amount of loss or profit that would be made if achieved on a box, is there any function to return that value on MQL4? Image of the box is below: Thanks a
Fernando Jose Velasco Borea
Added topic VPS Migration [Help]
I developed an EA to manage the SL of my manual orders, I have had no problems since today, everything seems to work just fine but yesterday I traded on a pair that I haven't opened any positions using the EA that earned a quick 40 pips, I woke up
Fernando Jose Velasco Borea
Added topic EA Locking to prevent illegal distribution
Hello! I'm working on several projects and for some of those I require to be restricted without having to buy/rent a server to make kind of a every 6 hours check for license numbers or something like that. I came up with a fairly simple idea, and I
Fernando Jose Velasco Borea
Added topic TP/SL Hit notification [Code help]
Hello all! I'd like to add to some EA's a notification function that, well, notifies when a TP or SL has been hit. I made a kind of BETA version of the actual code but I'm facing some troubles that I'm not sure how to overcome:    for ( int
Fernando Jose Velasco Borea
Added topic Trailing Stop [Code Help]
Hello, I'm working on some EA's that uses Trailing Stop Loss , I came around with this code: void Trailing_SL() {    for ( int i = 0 ; i < OrdersTotal (); i++) //Iterar con todas las ordenes     {
Fernando Jose Velasco Borea
Added topic Money Management [Code Help!]
Hello all!  I'm working on a EA that uses Money Management, I found this code very useful: //+--------------------------------------+ //|Manejo de
Fernando Jose Velasco Borea
Added topic I need help finding a coding walk-around for a problem.
Hello all!  I'm working on a project and I have a question, the system I'm working on uses Tenkan-Sen crossover with price, the problem I'm facing is the following: I want the system to take a trade every time the conditions are met (Bar opens
Fernando Jose Velasco Borea
Added topic Broker digit conversion function
Hello all, my question is if this function is stated correctly? int Pips() {                  double Pips = Point ;       
Fernando Jose Velasco Borea
Added topic Question about coding
Hello everyone! I've two questions: 1) Removing comments from source code would increase the performance of the EA in terms of back-testing speeds? 2) Could some one share a good course (free or paid) to learn MQL5 programming ? Thanks! Best Regards
Fernando Jose Velasco Borea
Added topic Profitable EA for Free Project!!!!!!!(EA Source code attached)
Hey guys, I'm making this idea around old XMT Scalper system, as the developer has been inactive since early 2017 I'd like to continue from the base they left. I saw ASSAR EA based on the exact same code, they claim that it has some variations but
Fernando Jose Velasco Borea
Added topic Using extern variables to set MA method into an EA
Hello, I'm trying to make the trader able to set MA type on an EA, I tried this coding: enum MA_Method {    Simple = 0 ,    Exponential = 1 ,    Smoothed = 2 ,    LinearWeighted = 3 }; input MA_Method Mode =
Fernando Jose Velasco Borea
Added topic Functions on MQL4
Hello, I'm learning a few programming languages, including MQL4, and I came up with a question that I didn't managed to find the answer on reference guides. When you define a new function , lets say a simple one: Double Product_3Numbers ( double x
Fernando Jose Velasco Borea
Added topic Does MQL4 has a Trailing Stop Loss funcion?
Hello, I just coded an EA and I'd like to add a Trailing SL to it but I'm not sure if MQL4 includes a function for that
Fernando Jose Velasco Borea
Added topic Help with my EA.
I just ended up a MQL4 course and started to mess around with Meta Editor, just a simple MA crossover EA, but I'm having a few problems: 1- I want the EA to open a trade on the next crossover, not on the current one. 2- I can't get the EA to close
Fernando Jose Velasco Borea
Added topic Stop Loss & Take Profit on OrderSend.
Hello, I'm developing an EA that kinda' uses Dow Theory, but I'd like to know if I set SL and TP levels on OrderSend() it takes them as not used
Fernando Jose Velasco Borea
Added topic OrderCloseTime() question.
I'm testing and messing around with this function , I read even on the mql4 help window that if the order is pending or closed the value it will take is 0, but when I put an alert with that function it returns 1970.01.01 00:00:00. //..Some coding to