Pilot65
Pilot65
Friends

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

Pilot65
Added topic Indicator TFs other then 0 does not work in the Tester ?
If I run this super simple indicator code in the Tester at M15 it works, but it does not work at M5 or M30. It works in a static indicator(dropped on a chart) but not in the Tester.... is this because we'd be looking into the future
Pilot65
Added topic Is there a way to have an EA or Indicator's Start function called at a fixed interval, e.g every 1sec ?
Is there a way to have an EA or Indicator's Start function called at a fixed interval, e.g every 1sec ? I'd like to make decissions right before bar0 closes, but especially at low TFs the ticks are useless for this purpose
Pilot65
Added topic What am I seeing here...?
Can someone explain this
Pilot65
Added topic Why are price at given time different on different TFs ?
I ran into some problems with my code, and traced it down to an oddity: I thought the price e.g. at EURUSD H1 '2009.02.11 08:00' would be the same as at EURUSD M1 '2009.02.11 08:00'... apparently it is not. Because if I zoom in on that particcular
Pilot65
Added topic accessing earlier data on m1 chart?
Seems the M1 chart can only be scrolled back to the beginning of month. I want more! E.g if I mark a point on the H1 chart and want to have a closer look at it on the M1 chart the M1 chart can't be scrolled far enough back to reach this point. Have
Pilot65
Added topic Collaboration on development of Trend/Range indicator
My developments have had some success but I need help of a seasoned MQL4 programmer . This will be a private off forum deal. Send me a private message if this is a project you want to take part in
Pilot65
Added topic Are "Closed At Stop" trades included in the tester report?
Are they? If so many of the most important parameters in the tester report are grossly missleading... From what I can see it looks like those orders are subtracted from "Winning Trades", and also "Drawdown" is 'corrupted' and next
Pilot65
Added topic Normalizing indicator value to percent, so threshold works the same across currencies ?
Hi, I'm building a indicator using data from several std indicators. Their data is combined in various ways and I end up with a single variable (array), and from that draw a normalized indicatorline that swings across 0 to some value. Buy/Sell signal
Pilot65
Added topic Small problem with re-coloring the pricegraph with TrendLines...
Hi, can anyone of you gurus pls help me out with this problem that has kept me occupied for days ? //********************* Global Declarations ************************** int Tick ; int id ; int PrevTime ; int DrawIndex = 0 ; color Sell = Red ; color
Pilot65
Added topic Square data (zero risetime) in indicator possible?
See picture. Is it possible to have an indicator draw truly vertical (zero rise time) from buffer data, as indicated by the red overlay? Note the chart is fully zoomed so there is one bar pr. V-division. I'm not sure about this as it would kinda
Pilot65
Added topic How many orders (OrderSend, OrderClose, etc) should I dare throw at a non-dealingdesk broker in 1 minute ?
Non-dealingdesk brokers like IBFX are less fussy about this but even they have a limit. Would an average of 1 order pr. minute be too much? Some input on this would be great as I have a strategy that looks very good, but it produces about 1 order of
Pilot65
Added topic Different data from Indicator and iCustom ??
Hi, I have had this problem bugging me for two weeks and I just can't figure it out: Made a special 'compund' indicator with one combined output (graph)...works great. But when I run the same calculations in the EA (obviously using arrays instead of
Pilot65
Added topic Return chart zoom level ?
Any ideas on how to get the manual zoom level in use on the chart, either while draging or on mouse up
Pilot65
Added topic Function can not return string ?
//------------ colortest -------------------- int colortest ( ) { string res = "any string" ; // return ( res ) ; } //------------------------------------------- The code above gives compile error: '(' - incompatible types Now whats wrong
Pilot65
Added topic Run on chart csroll ?
I need a little code to run not on every Tick but each time the chart is updated, e.g every 1M. Ideas
Pilot65
Added topic Why doesn't this work in the tester ?
Trying out some stuff, but due to weekend close I'm running it in the tester. In the start function: hl= iLow (Symbol(),PERIOD_M1,0); ObjectCreate("trl", OBJ_HLINE, 0, 0, hl, 0, 0); It draws one (the first) hline, but no more. Have checked
Pilot65
Added topic Access window properties programatically ?
Hi, Just started with MQL4, and I want to change some of the properties of the chart window. At this stage I want to change the price graph linestyle to line, and its color from the default Lime to something of my choise. These changes should (or