Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
i'm (still) working on programming good friday's occurence. i've got the sequence of the full moon set, and i also have my variable, full moon, to be an integer, from a double, and i've encountered yet another dam in my river of thought. (man i hate it when i run into thoose!)
this last expression i've been working on in my good friday testing funciton involves using some c++ terms i've never seen in any refrence or other code, as i'm not a professional programmer, i'm groping in the dark really.
here's what i want the string to say. this is the wednessday before the sunday after the first full moon after march 21'st.
here's what i was thinking of when i started this expression step by step.
PHP Code:
// if the month = march, the day is greater than 21, otherwise, the month has to be april or may if (((Month() == 3 && Day() > 21) || (Month >= 4 && Month() <= 5) //this is a wednessday && DayOfWeek() == 3 //in 4 days, it will be a sunday (nigh certain this isn't proper grammar) && (Day() + 4 /*makes*/ DayOfWeek() == 0) //and that sunday will be after day3 (a variable i defined as a day when the moon is full) > (Day() > day3))) { gmonth = day3; gday = month; }
__________________
"One's ability to accomplish his or her goals is limited only by the ingenuity of how one uses what he or she already knows."- Eaglehawk
REMEMBER, "Genius is nothing but a greater aptitude for patience." –Benjamin Franklin
____________________________________
Have a simple ea you just can't figure out how to code??? Odds are you can make it here. Just remember to push complete when you're done, NOT SAVE!!! http://sufx.core.t3-ism.net/ExpertAdvisorBuilder
Hi. Does anyone know if it's possible to place 'wingdings' at XY co-ordinates (NOT Time/Price co-ords.) in separate windows??? I've being trying for about 2hrs and have reached the conclusion it can't be done. Can anyone provide a solution???
How to create a candlestick chart as an indicator?
Folks,
Is it possible to create candlestick like chart in the seperate indicator window?
I want to draw candlestick price in a seperate indicator window for a currency.
hi everybody,
i have a trading strategy needing a for programming and testing.surely some enhacment as well.
i'm willing to pay a professional in this domain to help me.
Thanks,
YOLO
I've read a lot about re-quotes and failed orders with different brokers, but I'm wondering how these are handled by EAs in MT4... if a price quote is outside the specified slippage will it just keep trying until it gets the price it wants, or will the trade be abandoned? What if the order is rejected for some server glitch or other... does MT4 keep trying to get the order accepted?
Many EAs rely on being able to place, modify or close a position when the proper time comes, and it seems to me it would be a disaster if it just bails out under error conditions. I'm just wondering if some EA guru could explain just how these situations get handled...
I have a custom indicator that works very nicely and I'd like it to modify my order at certain points. It seems like it doesn't want to execute an OrderModify() function and keeps returning error number 4055 just after I make the function call.
Can I run order functions buy/sell/modify etc from an indicator and if not can somebody offer a solution?
hello, my Indicator uses the following code to record every trade signal to a text file. by default, the latest signal is the last record at the bottom of the file. what I want to do is to reverse this order. that is, I'd like my latest signal to come on top. does anybody know how to do this?