Alex Go
Alex Go
Friends

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

Alex Go
Added topic //get current phase-time in/on direction of/to selected duration, realized or anticipated pivot preference (depending on the former)
//get current phase-time in/on direction of/to selected duration, realized or anticipated pivot preference (depending on the former)
Alex Go
Added topic possible loss of data due to type conversion --WARNING
Hello, please help Please give me some advice on what I should do about this...       zcolor = ObjectGet( "prev-LR-Trend" , OBJPROP_COLOR );        if (zcolor== clrDarkBlue ){zBias= 3 ;}
Alex Go
Added topic A General Question about a method of Market Analysis
Greetings, ...so I put together this setup for looking at a number of pairs, somewhat like similarly to https://www.mql5.com/en/code/30169 but more like for each specific currency just looking at strength from a Duration perspective.  Basically
Alex Go
Added topic Remembering Your Trade Plan
Hello, dear MQL Forum I am trying to remember my trading plans in the following way: hotkey <ctrl+1> a script that save a template... This is what it does #property show_inputs enum TemplateName{ plan_USDCHF= 1 ,   //USDCHF
Alex Go
Alex Go
How To Remember Your Plan without Ginkgo Biloba?
Alex Go
Added topic Levels
enjoy any suggestions, please? there are lots of comments in the code, not really complete sentences and such, just notes about the thought process
Alex Go
Added topic Pivot Preference
Greetings. This indicator is called Pivot Preference.  It plots (1-(P-S1)/(R1-P)) in a separate window, where P is the central Pivot (HLC/3), S1 is first support((2*P)-PreviousHigh), and R1 is first resistance((2*P)-PreviousLow). This indicator
Alex Go
Added topic A Free Trading System In Development
Hello, Trading is hard. Why trade? To make money.  How to trade? Buy low, sell high. This is essentially the gist of it, right? To decide whether I want to Buy or Sell I first need a Bias.  I figured I'd take the Open Price as my starting
Alex Go
Added topic Error 130 should sometimes just be ignored, but will my broker enjoy it?
hi, so I implemented this strategy of mine where I draw some sloping fibots starting at the open of the day or week or month, and then track the sloping lines and place pending orders on the two lines that bracket price, both orders in the direction
Alex Go
Added topic An Example of Trading Logic, with a Question
...actually this is a question that's been concerning to me for a while now, are there cases when verifying OrderSelect() (i.e. to resolve the Warning) is actually a bad idea and I'd be better off just leaving OrderSelect
Alex Go
Added topic Here's a Trading System Idea
Hello, My Trading System Idea is the following - - look to buy if the Bias is "BUY" and look to sell if the Bias is "SELL", pretty obvious, in general. How to go about executing the buy/sell orders is a different story because the current story is
Alex Go
Added topic Counter Question
Sorry to bother you, but are these the same or is there a time when the're not?    int counted_bars = IndicatorCounted();    if (counted_bars < 0 ){ return ( 1 );} counted_bars--; versus    int counted_bars =
Alex Go
Added topic Looking for advice/help in running ObjectFind() on dynamic string arrays
hi I put together this EA using code from this forum (mostly) and am trying to implement my strategy...the strategy is roughly https://www.mql5.com/en/code/7066 but the lines I intend to use are any of the following string buystop[] = { "d0a5v"
Alex Go
Added topic Classic ThreeAngulation
Hi, So I have this idea that's been stuck in my head for some time now.  Obviously, this idea is related to trading but more specifically to a Trading Strategy.  I call it the ThreeAngulation strategy.   It's logic is the
Alex Go
Alex Go
Hi,
So I have this idea that's been stuck in my head for some time now. Obviously, this idea is related to trading but more specifically to a Trading Strategy. I call it the ThreeAngulation strategy. It's logic is the following: ...
...1)assumption1: price moves Up or Down and then Consolidates
...2)assumption2: price Consolidates and then moves Up or Down again
...3)assumption3: Buy or Sell when price Consolidates and exit at a Loss or a Profit
The way I figured I'd tell when price is Consolidating is look for when it's closing between two moving averages, a medium-term one and a short-term one. I chose a twelve hour average and a one hour average for the medium and short -term. So, if on a M15 price closes between the MA(26) and MA(4) while MA(4) is below the MA(26) I take it as bearish consolidation...
Next, I make sure I check on a filter, which is longer-term, i.e. a weekly moving average, on a M5 that'd be 1440, and for the M15, divide by three...480, and I write a condition to check: "[...] if(Close[0]<MA480 && Close[0]MA4 && MA4<MA26)" and if its true I send a sell () and if the other directional conditions are met, i.e. price is above the weekly and 12hour, price is below the one hour and the one hour is above the twelve, then its a buy. (I'm attaching this expert which is really a modification of a bunch of other scripts and experts I looked at, still, it seems to work, but it is so slow)
If anybody wants to participate, it would be great. You're welcome.
ps. oh, I can't attach code here? right..probably because I should make a separate post for this