fx-analysis
fx-analysis
Friends

Add friends via their profile or user search and you will be able to see if they are online

fx-analysis
Registered at MQL5.community
fx-analysis
Added topic Cubic root
Hello, How to take cubic root in MetaTrader ? for example: CubicRoot(8) = 2; CubicRoot(27) = 3; There is only SquareRoot sqrt(4) =2; Perhaps Logarithm function should fit ? Thanks, Edas
fx-analysis
Added topic Wanna include "include" file into indicator
Hello, I have indicator which uses "include" command to include external library. This library declares external functions which are in .dll file Is it possible to declare dll functions from indicator itself avoiding "include"
fx-analysis
Added topic SendMail problem
Hi EveryOne, I have problem with SendMail function . If I test Options-Email-Test, I got error message. The settings are working in email program. If I include SendMail command in expert it does not send any mail. Could you advice ? Regards, Edward
fx-analysis
Added topic Why Indicator line does not seen in expert correctly ?
Hello, I have a quite strange problem. I have indicator, which plots one line with constant slope per bar. If I include this indicator into expert indicator line plots strange way during testing period. Before testing period it looks ok. If I
fx-analysis
Added topic Metatrader on Server
Hi Everyone, Is it possible to run MetaTrader (and Experts ofcource) on so called dedicated Windows server (many internet companies give such service) ? Thanks, Edward
fx-analysis
Added topic Question about FileRead
Hi Everyone, I want to read .csv file with precalculated data and load this data to indicator. File data has such stucture: Date time, data1, data2, data3, data4 2011.10.20 00:22,-0.04558,-0.76599,1.65205,2.83105 2011.10.20
fx-analysis
Added topic How to calculate was last trade profitable or not ?
Hello Everyone, I want to calculate if last trade profitable or not. I want to vary Order Size, depending on last operation. For example, if last trade was loss, I want have only half of default lot. If last trade was profitable, I want to trade
fx-analysis
Added topic Is it possible to change Object Name ?
Hello Everyone, I want to change object name . Is it possible ? Or I need to create new object with the same parameters and delete old object ? Edward
fx-analysis
Added topic How to save value for future
Hello, I have some problems to use several criterias for market operations. For example, for selling: 1) First I want price to reach some resistance level (red line) 2) Second, I need to wait for market to broke under some lower level. I don't want
fx-analysis
Added topic Question about ObjectGetShiftByValue
Hello, Function ObjectGetShiftByValue ( string name, double value) returns bar number by value. As I understood, it could not return negative numbers - it could not return future bars. Or could ? Thanks, Edas
fx-analysis
Added topic Changing chart color
Hi, Is it possible to change chart color in MetaTrader 4 ? For example, is Macd > 0, color Green is Macd < 0, color Red Thanks
fx-analysis
Added topic Why WindowScreenShot does not save a picture ?
Hi, I am trying to ""mate" WindowScreenShot function . Below is very simple expert. However it does not save picture to file. What is the reason ? Thanks in advance for help, Edas
fx-analysis
Added topic How to numerate bars in Expert ?
Hi, I wrote indicator which works many with bar number. Example of code is below: for (Bar = limit; Bar >= 0; Bar--) //all bar cycle { //some code here for (int i=4; i>=2; i--) //shifting Highs and Bar Numbers in Array { HighBar[i] =
fx-analysis
Added topic Why I cannot "mate" Highest function ?
Hello, Highest function is very easy to understand. However I often got strange results from it. Below is simple indicator I want to build. It should plot arrows at Highest bar, Period 100. However indicator plots also on bars who does not match this
fx-analysis
Added topic Does Metatrader allows to put all indicator buffers into single two-dimensional Array ?
Hello, I am interesting if I could declare two dimensional array, and then put all indicators to this array. For examle: BUFF[8][]; //two dimesional array SetIndexBuffer(0,BUFF[1][]); SetIndexBuffer(1,BUFF[2][]); SetIndexBuffer(2,BUFF[3][]);
fx-analysis
Added topic How to show indicator just on some timeframes ?
Hello, I have very simple question: How to show indicator just on some timeframes ? If indicator is attached to chart, I could select time frames I want to be shown on Indicator->Visualization. But is it possible to select timeframes in indicator
fx-analysis
Added topic Looking for Zigzag with data export
Hello, I need Zigzag with data export function . I want to export Highs and Lows with time stamp for furher analysis. If you saw such Zigzag, could you write a link ? Thanks, Edward
fx-analysis
Added topic I am writing High/Low analysis script - could you help solve problem ?
Hello, I try to write script with analyses distribution of last two digits of Highs/Lows. Analysing with Excel I noticed that daily highs/lows are save some values more often than others so I decided to make script for this job. Script uses
fx-analysis
Added topic My first Expert: why OrderSend does not work ?
Hello, I am writing my first Expert - Limit/Stop order. The idea is to activate Stop Order only then a certain level (support or resistance) is reached. It is necessary to input Limit and Stop levels as parameters. I use command OrderSend(Symbol()
12