- Search Forex Factory
- 47 Results (3 Threads, 44 Replies)
- will.cyan259 replied Nov 5, 2020
They usually pullback to make daily wick. I saw it alot when I trade HOLO. Price will pullback to create daily wick, after that, nobody know it reverses trend or continue trend.
Strategy: Daily Range Spike and Pull Back
- will.cyan259 replied Nov 5, 2020
His strategy doesnt mention anything about ADR (AVERAGE DAILY RANGE). He use YESTERDAY RANGE bro.
Strategy: Daily Range Spike and Pull Back
- will.cyan259 replied Nov 27, 2019
I am using HOLO strategy from TooSlow, I am not sure that I can post the link here but you can find it in forexfactory > trading system easily.
Currency Grail Scalping System
- will.cyan259 replied Nov 26, 2019
Thank you for the strategy, this one very similar to my method. I am using H1 and enter trade at 59'52s on current H1 bar which make D1 high/low. I have stoploss in place but very good RR and winrate if you use on specific session. Normally I escape ...
Currency Grail Scalping System
- will.cyan259 replied Oct 30, 2019
Hi there, I am using this strategy at my core trading. However can you recommend some brokers that suit for this strategy? My broker put high stoplevel that make difficult to trade it correctly. What broker are you using? I live in Asia. Thanks all.
Highest Open / Lowest Open Trade
- will.cyan259 replied Jun 19, 2019
Thanks, I find out it does not delete pending order when profit >0 at first version and added my own code to make it work. Just late feedback after you make this v1. Thank you.
Want code reviewed and point out my mistakes
- will.cyan259 replied Jun 19, 2019
Thank you for your advise. I will rewrite it.
Want code reviewed and point out my mistakes
- will.cyan259 replied Jun 17, 2019
thank you for that, I will check it and give you feedback. Cheers!
Want code reviewed and point out my mistakes
- will.cyan259 replied Jun 14, 2019
Thank you very much, did you find out anything that make EA placing pending order than immediately delete it. I got this situation something when I used backtest and never come in real but it makes me worry.
Want code reviewed and point out my mistakes
- will.cyan259 replied Jun 13, 2019
Hi Beerrun, When you have time, can you quick review on my code if there are any mistakes. I want to code an EA with following function: - Place order with TP = 20pip, SL = 10pip. *done. - Everytime SL hit, it will open opposite order which ...
Newbie needs help with a logic idea
- will.cyan259 replied Jun 13, 2019
Hi Paulselvan, Break there in case OrderSelect() return false, if no orders are selected, the loop will break, otherwise it will continue to check the symbol and count the order. Break there in case no orders are opened. Finally, somebody read my ...
Want code reviewed and point out my mistakes
- will.cyan259 replied Jun 11, 2019
you need to compile it first. To convert from mq4 to ex4 that can run an ea.
Auto moving stop loss to break even without stalling
- Want code reviewed and point out my mistakesStarted Jun 10, 2019|Platform Tech|13 replies
Hi everyone, I am new learner. I want to improve my coding skill so I code everything come ...
- will.cyan259 replied Jun 5, 2019
And if OrderClose return true, it will execute the OrderClose with price, lots, and ticket in the bracket. Everything is clear now. I will rewrite my EA for a clean code. Thank you a lot.
Newbie needs help with a logic idea
- will.cyan259 replied Jun 5, 2019
Hi Beerrun, I have 1 stupid question about your code. Why we use if(!OrderClose)(), if(!OrderDelete)() As my understanding, it means "if NOT OrderClose()". I dont understand how "!" put here can close & delete order.
Newbie needs help with a logic idea
- will.cyan259 replied Jun 5, 2019
Thank you for your clear explaination.
Newbie needs help with a logic idea
- will.cyan259 replied Jun 5, 2019
Hi Beerrun, I want to delete all pending orders and close all opened trades at market price so I write this code void CLOSEALL() { for(int i=0;i<OrdersTotal();i++) { if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) if(OrderSymbol() == Symbol()) ...
Newbie needs help with a logic idea
- will.cyan259 replied Jun 3, 2019
Hi Beerrun, Sorry for late respond, I was busy at weekend. I dont mind to share my code with you. If you are interested, let me know, I will send the whole code with explaination part by part in private message. It's too messy if we discuss it here. ...
Newbie needs help with a logic idea
- will.cyan259 replied Jun 3, 2019
Thanks Doji, I will check the broker time because I also have some time setting in my EA.
Newbie needs help with a logic idea
- will.cyan259 replied Jun 1, 2019
Hi Beerrun, I have study your code. It works pretty well so far. Hence, my EA has only 1 error which I cannot identify. It keeps placing the pending order and delete immediately after it places an order, and keep repeat it infinity. Do you know ...
Newbie needs help with a logic idea