Retail Broker, Institution and Bank Butt Whipper
Moment of Truth - You have no clue All Time Profit:
-£6,701
Very Profitable System - Roi system 350 replies
MA, Gann and Ichimoku system (profitable system!) 60 replies
MT4 EA: Let's make a profitable EA based on SOMETHING 7 replies
Anyone know of a profitable EA with new 30:1 leverage rules? 8 replies
What are your most profitable rules in your trading plan? 36 replies
DislikedGU H4 BUY came in this morning...u can wait for the cross, but i like to catch the early bird, plus at this moment previous high is broken, plus the 50 ema cross up heading towards the 200 ema targets 1.2550 1.2600 1.2650 1.2700 1.2750Ignored
Disliked{quote} Not interested sorry. This thread is all about my system. Your system is completely different to my system. Please create another thread for your systemIgnored
Disliked{quote} yeah sorry this wasn't for you to take mkvy, i kno you have your rules, this was for the other guys....and your right this early entry goes against your system..i apologize, i'm gonna see if i can delete my previous postIgnored
DislikedI am deleting this thread soon, as there is no point to maintain it. No one can follow it except me... If you are one of a select handful who can, i will continue to add shouts and PM.. This thread will self destruct in approximately 24 hours. Goodbye and good luckIgnored
DislikedSticking to the rules through a ridiculously inactive market period has paid off.. Many would have been forced to trade 1 minute/5 minute TF Now you can see just how much patience you need. way way more patience than most traders.Ignored
Disliked{quote} can you give details about your trading system again ...? because I have tried many times and always failedIgnored
//@version=4 study (title = "EMA 13/63", shorttitle = "EMA13-63", overlay = true) // --------- Inputs src = input(defval = close, title = "Source") maFast1 = input(defval = 13, title = "EMA Fast 1") maFast2 = input(defval = 63, title = "EMA Fast 2") freePips = input(defval = 3,type=input.integer, title = "Free Pips") point = syminfo.mintick pip = point * 10 f_maFast1 = ema(src, maFast1) f_maFast2 = ema(src, maFast2) crossBuy = crossover (f_maFast1, f_maFast2) crossSell = crossover (f_maFast2, f_maFast1) plot( f_maFast1, title = "EMA Fast 1", color = color.green, linewidth = 1) plot( f_maFast2, title = "EMA Fast 2", color = color.red, linewidth = 1) if crossBuy priceBuy = high+ (freePips * pip) label.new(bar_index,0,"Buy\nPrice:"+ tostring(priceBuy), style=label.style_label_down, yloc=yloc.abovebar,color= color.green, textalign=text.align_left) line.new(x1=bar_index[1], y1=priceBuy, x2=bar_index, y2=priceBuy) if crossSell priceSell = low- (freePips * pip) label.new(bar_index,0,"Sell\nPrice:"+ tostring(priceSell), style=label.style_label_up, yloc=yloc.belowbar,color= color.red, textalign=text.align_left) line.new(x1=bar_index[1], y1=priceSell, x2=bar_index, y2=priceSell, color=color.red)