DislikedWith this expert you can visually check the trading volume and profit and loss on the chart. {file} {image}Ignored
Anyone else having same problem ?
Alternative Trade Management/Money Management Methods 3 replies
BASKET TRADE Management: Using multiple trade management EA's on basket trades 8 replies
Money Management / Risk Management 24 replies
Successful Trade Management / Risk Management 0 replies
All the most widely used tools = the strongest tools 5 replies
DislikedWith this expert you can visually check the trading volume and profit and loss on the chart. {file} {image}Ignored
DislikedEA to Protect Account. Put this EA on your terminal (ideally installed on a VPS or another PC out of reach) and it will protect your account from disaster, or just a bad day at the office! This EA will: Close all open trades at "X" percentage floating equity draw-down (6% default.) Close all open trades at "X" percentage daily balance loss (6% default.) It will also instantly close every attempt to place further trades until the following day. Additionally it can: Allow "X" amount of open trades at any given time per pair (5 default.) Allow "X"...Ignored
Disliked{quote} Here's a modified version of the Protect Account EA with an option to close all trades if "X" floating / closed is reached in that day based on currency value. Those that are trading on FTMO will never fail the daily loss limit objectives if you apply this EA... Sorry FTMO for releasing this. You can also set a max position size as well to prevent you trying to slip in a cheeky 40 lot on a revenge trade.The trading time filter doesn't seem to work but the dev wants more cash to fix that for some reason. Might sort that eventually....
Ignored
Disliked{quote} This doesn't load up in MT4 as well. I mean it's a very good looking EA but it just doesn't work... Can we please get a working one ? ThanksIgnored
Disliked{quote} Here's a modified version of the Protect Account EA with an option to close all trades if "X" floating / closed is reached in that day based on currency value. Those that are trading on FTMO will never fail the daily loss limit objectives if you apply this EA... Sorry FTMO for releasing this. You can also set a max position size as well to prevent you trying to slip in a cheeky 40 lot on a revenge trade.The trading time filter doesn't seem to work but the dev wants more cash to fix that for some reason. Might sort that eventually....
Ignored
DislikedThought I would put a thread together (similar to Tuxtrader) for some of the MT4 indicators and EA's I've had developed. If anyone finds any of them useful then that's a win for me.For any bugs, general feedback or feature requests feel free to post them below. I am not a coder but I can possibly reach out to the devs for any fixes. Switch_Symbols_V1 Features: Changes Symbol (all charts) to next or previous using Left or Right Arrow (either keyboard or onscreen arrows.) Change Timeframe up or down (across all timeframes of same symbol)...
Ignored
DislikedC12_AutoZoom Another indicator that you never knew you needed until now. You can set an initial default zoom level for every time-frame which makes it easier for rapid multi-TF analysis. The indi is extremely light and causes zero lag. Enjoy.{file} {image}
Ignored
DislikedRisk Management Info Panel An essential utility for keeping track of account exposure, leverage used and overall account risk, assuming you have stops in place. There are many configurable settings to play around with.It can be used as part of of a larger dashboard or just have the headers showing at the bottom of the chart. {file} {image}
Ignored
DislikedDear coders, I was completed almost 85-90% work with my half knowledge. Now I require professional coders help. I want this indicator to find M5 chart the lowest closed price and highest closed prices within Start and end-time zone, and drawn rectangle must fix if change different TF. FYR:- I have attached Image {file} {image}Ignored
Disliked{quote} void drawBoxOnce ( string objname, datetime tStart, double vStart, datetime tEnd, double vEnd, color c, int width, int style, bool bg ) { Comment(" tStart :",TimeToString(tStart),"vStart : ",vStart,"tEnd ",TimeToString(tEnd), " vEnd:",vEnd); if (ObjectFind(objname) != -1) return; ObjectCreate(objname, OBJ_RECTANGLE, 0, tStart,vStart,tEnd,vEnd); ObjectSet(objname,OBJPROP_COLOR, c); ObjectSet(objname, OBJPROP_BACK, bg); ObjectSet(objname, OBJPROP_WIDTH, width); ObjectSet(objname, OBJPROP_STYLE, style); } {image}Ignored
Disliked{quote} kourosh1347 Am not looking for comment function. My indicator will draw a box tStart / tEnd time, and it will find lowest and highest closed prices within datetime on the current chart. I required box will draw the lowest closed and highest closed prices based on M5 TF. In M5 Lowest candle close 1.08974 and Highest closing price 1.09963 In M15 Lowest candle close 1.08992 and Highest closing price 1.09958 In M30 Lowest candle close 1.09032 and Highest closing price 1.09926 price values...Ignored
Disliked{quote} boxStartShift = iBarShift(NULL,0,tBoxStart); boxEndShift = iBarShift(NULL,0,tBoxEnd); boxHigh = Close[iHighest(NULL,0,MODE_CLOSE,boxStartShift-boxEndShift,boxEndShift)]; boxLow = Close[iLowest(NULL,0,MODE_CLOSE,boxStartShift-boxEndShift,boxEndShift)]; boxStartShift = iBarShift(NULL,PERIOD_M5,tBoxStart); boxEndShift = iBarShift(NULL,PERIOD_M5,tBoxEnd); boxHigh = iClose(_Symbol,PERIOD_M5,(iHighest(NULL,PERIOD_M5,MODE_CLOSE,boxStartShift-boxEndShift,boxEndShift))); boxLow = iClose(_Symbol,PERIOD_M5,(iLowest(NULL,PERIOD_M5,MODE_CLOSE,boxStartShift-boxEndShift,boxEndShift)));...Ignored
DislikedC12 Chart Scroll Another indicator you never knew you needed until now. One I fudged together from another indicator and fixed up. You can do a quick left scroll and back again without MT4 chart flickering. I have no idea why MT4 doesn't do this by default. One to put on every single chart. {file}Ignored
Disliked{quote} Hi - What exactly does this do? I can only see that it turns off auto scroll to incoming tick when smart scroll is on?Ignored