LAS TEN
LAS TEN
Friends 2
LAS TEN
Added topic bar up vs bull candle (bar down vs bear candle)
Can not figure out what is the difference in MT4/Mt5 chart properties colors tab. Seems to me that colors for bear candle bull candle have no effect. Please enlightened me
LAS TEN
Added topic russian comments strange displayed character
Hello, Long time ago find the solution but now I forget it. In a lot of indicators/EAs posted by russian people the comments are like: Ìèíèìàëüíàÿ ïðèáûëü äëÿ ñòàðòà I know that this is not a language, it is about character set conversion but don't
LAS TEN
Added topic Experts messages, how to save them ?
Hello, Newbie question: I have an expert that output some messages (with Print()). I let it run more time and I observed that the outputs in Message Terminal are not saved in log file. I also observed that this output is, I think, fixed number of
LAS TEN
Added topic Recover purchased EA/Indicators that I purchased on the market
Hello, 3 years ago I've purchased 4/5 EA/indicators on market. Now the PC where they where saved is dead. Is it any possibility to recover them ? Are they stored anywhere, or only the mercy of the developer could save me
LAS TEN
Added topic ZigZag indicator on MT4 version 4 build 1010; bug or am I stupid?
I have a newbie question about coding. As you see on below picture I attached 2 ZigZag indicator to a chart. First with parameter Deviation=1000 color white and second with Deviation=5 color red. As you see there is not influence of Deviation
LAS TEN
Added topic close the only one open order
Hy, beginner question, I have an EA that closes open positions like this: for (i= OrdersTotal ()- 1 ; i>= 0 ; i--){          OrderSelect (i,SELECT_BY_POS,MODE_TRADES);
LAS TEN
Added topic Custom indicator coding dilema
Hello, first a little introduction: I am newbie to mql4 and coding. I try to understand a simple well known custom indicator to be able to code my own one. But I can not understand it. So this is the code: #property copyright "Kalenzo" #property
LAS TEN
Added topic record bid and ask for every tick in a file
Hello, A few month ago, maybe more than a year, I found an indicator on this forum that do the "Subject". Unfortunately I had to reinstall windows and now I've done a search with no success. Please if anyone could give me a link I
LAS TEN
Added topic indicator color coding
Hello, I am newbie on MT4 coding. I am sure it is very simple to code what I want but for me is very complicated. So I want to modify to the code of a custom indicator like this: if condition==true  indicator color=blue else  indicator
LAS TEN
Added topic MetaTrader5 build 1010
Hello, Does anyone know what are the semnification of those markers
LAS TEN
Added topic StopLoss greater than actual price on open BUY position
Hello, I am in front of an abnormal situation. As you can see from attached pictures I run an EA. It opens a position at 1.29604 with a StopLoss at 1.29574. Till now everything OK. After that it starts to modify position StopLoss according to my
LAS TEN
Added topic code debugging question
Hello, Please give me some points to resolve this issue: I've downloaded a free EA. It has a lot of files spreaded in Experts, Indicators, Include, Images folders. I've installed it with no errors. It works. The only problem is that: in places where
LAS TEN
Added topic Strategy Tester with Optimization mistery
Hello, I was trying to find the best results (in terms of profits/loses) of an EA with a variable "TrailingStop" that takes values from 1 to 25 with 1 step increment (see attached picture "Inputs"). I am dazed and confused -like in Led Zepellin's
LAS TEN
Added topic how to check if a manually try to open a positon meet a condition
I want to manually send order to open position. BUT I want that orders to be checked if meet one/more condition(s) and ONLY AFTER to be placed on market. I was thinking to build an EA that runs on a chart but I do not know how to check if a request
LAS TEN
Added topic Position open by Signal
Hello, If I subscribe to a Signal, and it open a position, can I manually close it (partially or totaly) ? Thanks in advance for replies !  
LAS TEN
Added topic OrderSelect() function blurriness
Hello, Newbie question: Try to code deleting a specific pending order from many. I am stuck on how to select it. In docs I saw that OrderSelect() function has ticket parameter and ticket of the order can be find with OrderGetTicket() but I am stuck
LAS TEN
Added topic pending orders question
Hello,  Please a little code suggestion on how to check if pending orders are placed and how many.. Thanks in advance! 
LAS TEN
Added topic Signals questions
Hello, I decided to give a little attention to signal subscribing. I have a few questions: 1-Can I change the lot size of the signal ? 2-How ROI is calculated ? 3-What AVG pips means; probably average pips, but how is calculated ? Thanks in advance
LAS TEN
Added topic error 4806 on EA Strategy Tester
Hello, I have an EA that works very well on real/demo account but on Strategy Tester gives error 4806 on if(CopyBuffer()...) test. Any suggestions? Thanks in advance ! 
LAS TEN
Added topic double order sended
Hello, Below is my simple code that generate 2 orders instead of one //+------------------------------------------------------------------+
123