Disliked{quote} Oh yeah, I changed the name to 3.0... LOL... And forgot to tell the EA that I had... {file}Ignored
Hi dear
Why getting this error , where doing wrong
thnx
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} Oh yeah, I changed the name to 3.0... LOL... And forgot to tell the EA that I had... {file}Ignored
Disliked{quote} There are no bars with index -1 or any "-". The bars are indexed as 0 = current bar, 1 = first closed, 2 = second closed, and so on... date1=0 means exactly: 0 hours of January 1, 1970. date2=5 means exactly nothing - 5 is not a date. To get the index of the candle of a specific date we use iBarShift(_Symbol, Timeframe, date); To get the date of a specific bar index we can use Time[index]; for the current chart timeframe, or iTime(_Symbol, Timeframe, index); for a specified timeframe. https://docs.mql4.com/dateandtimeIgnored
DislikedFirst, help so i can have the RSICurrencyStrength underneath, so i can have like the yellow color to be on top of it. as show in the picture.Ignored
Disliked---Second, please remove the window OR historical view of currency on window. i only need currencies in real-time on main chart without showing the historical in sub-window.Ignored
Disliked---Third, the indicator have issue of, if place on higher time frame, it will make my mt4 platform freeze and nothing work until close the platform. Even if on lower time-frame it still does not work well, except on current time frame.Ignored
Disliked---Please I will appreciate if I can have more than one or two on the same chart by having a unique id for each. Please help on this{image} {file} {file}
Ignored
QuoteDisliked//+------------------------------------------------------------------+
//| RSICurrencyStrength_v1.0 600+.mq4 |
//| Copyright2018, TrendLaboratory |
//| http://finance.groups.yahoo.com/group/TrendLaboratory |
//| E-mail: [email protected] |
//+------------------------------------------------------------------+
Disliked{quote} Hello I am still having the same problem with this indicator ...the candles are still hidden behind the shades. Thanks for your help... Jeff {image}Ignored
Disliked{quote} Hi dear Why getting this error , where doing wrong thnx {image}Ignored
Disliked{quote} There is absolutely nothing in the two Fib indicators which you provided that would in any way modify chart properties, so the issue must be somewhere else. Most probably, all you need to do is select Chart on Foreground in chart properties. If you have done that and you still can't see the candles, that means that some other indicator forces the chart properties. BTW. Those indicators didn't work on Indices, for example, because in order for them to work on Indices we need a custom Point Factor. So I added it. For my broker with 2 decimal...Ignored
Disliked{quote} thank you for your reply, I've attached the indicator here for you to see what I'm talking about you'll see why I referred to the bars as 0 and 5 this is how it is setup here thank you so much for your help BestTraderEv {file}Ignored
QuoteDisliked/*
Generated by EX4-TO-MQ4 decompiler V4.0.223.1a []
Website: http://purebeam.biz
E-mail : [email protected]
*/
#property copyright "Copyright2008, FOREXflash Software Corp."
#property link "http://www.metaquotes.net"
Disliked{quote} I hope you can read in English with understanding??? {image}Ignored
Disliked{quote} Well, I have a tool for you: {file}This EA has no license codes, and no expiry date, however, DO NOT change the name of the file! Here is how it works: {image}This EA works on the symbol chart on which it is running. IMPORTANT! The money mangement (SL, TP, BE in currency) only supports the trades taken by this EA! The positions are recognised by the symbol and the Magic Number, so you can use it on different charts of the same symbol, if you change the Magic Number. This EA allows us to trade in two different styles: 1. Pending STOP Style...Ignored
Disliked{quote} There is absolutely nothing in the two Fib indicators which you provided that would in any way modify chart properties, so the issue must be somewhere else. Most probably, all you need to do is select Chart on Foreground in chart properties. If you have done that and you still can't see the candles, that means that some other indicator forces the chart properties. BTW. Those indicators didn't work on Indices, for example, because in order for them to work on Indices we need a custom Point Factor. So I added it. For my broker with 2 decimal...Ignored
Disliked{quote} I'm just surfing the net, and found this: https://forex-station.com/download/file.php?id=3307735 Check it out - no colors! {quote} Or this one? https://forex-station.com/download/file.php?id=3369718Ignored
DislikedHi, can some coder make like a box indicator based on this strategy in this video looks pretty good for price action! https://www.youtube.com/watch?v=Uxwr4CVhGhgIgnored
Disliked{quote} Thanks i will be grateful if the once possible can be worked on. But for the first one the rectangle is from another indicator symbol changer plus. is just that, the indicator RSICurrencyStrength is always on top of any indicator.Ignored
QuoteDislikedNot possible. A filled rectangle will always be in the background of a rectangle label.
DislikedIs anyone here willing to look over a ThinkScript (think or swim) code and lend a hand with converting it to an indicator in MT4? It has been years since I did anything with MT4 and at that time I had not delved into any level of coding. Messages or replies are fine. Thanks!Ignored
QuoteDisliked"Holy Grail" exists - accepting where is the first step.
DislikedHi, can some coder make like a box indicator based on this strategy in this video looks pretty good for price action! https://www.youtube.com/watch?v=Uxwr4CVhGhgIgnored
DislikedHelp i need additional wording added to the attached so when it alerts it should also display time frame the alert sounded on.Thanks {file} {image}Ignored
Disliked{quote} Well, why don't you just post the script and I, or someone else will take a look. Maybe this indicator already exists in MQL4/5? BTW, forgive me for being this way, but when I read such things, I just must comment! You have: {quote} This method is wrong! It is called presupposition and it is completely circular, which means it is wrong. We can not start from presupposing that X is true and then conclude that X is factually true! If we say "Holy Grail" exists, then we first need to construct the actual model of that "Holy Grail", and then...Ignored
QuoteDislikedinput lookback = 1;
input Timeframe = AggregationPeriod.hour;
def Prange = high(period = Timeframe)[lookback] - low(period = Timeframe)[lookback];
def FibExt2 = 1.618;
def plow = low(period = Timeframe)[lookback];
def phigh = high(period = Timeframe)[lookback];
def fib_mid = (phigh+plow)*.5; ( In Thinkscript, this can also be expressed as "def fib_mid = HL2(period=timeframe)[lookback]") )
def fib_ext_down2 = phigh - (Prange * FibExt2);
def fib_ext_up2 = plow + (Prange * FibExt2);
def fib2sell = (fib_ext_up2 + fib_mid)/2;
def fib2buy =...