//+------------------------------------------------------------------+ //| Bar Replay V2.mq4 | //| Copyright 2020, MetaQuotes Software Corp. | //| https://www.mql5.com | //+------------------------------------------------------------------+ #property copyright "Copyright 2020, MetaQuotes Software Corp." #property link "https://www.mql5.com" #property version "1.00" #property strict #define VK_A 0x41 #define VK_S 0x53 #define VK_X 0x58 #define VK_Z 0x5A #define VK_V 0x56 #define VK_C 0x43 #define VK_W 0x57 #define VK_E 0x45 double balance; string balance_as_string; int filehandle; int trade_ticket = 1; string objectname; string entry_line_name; string tp_line_name; string sl_line_name; string one_R_line_name; double distance; double entry_price; double tp_price; double sl_price; double one_R; double TP_distance; double gain_in_R; string direction; bool balance_file_exist; double new_balance; double sl_distance; string trade_number; double risk; double reward; string RR_string; int is_tp_or_sl_line=0; int click_to_cancel=0; input color foreground_color = clrWhite; input color background_color = clrBlack; input color bear_candle_color = clrRed; input color bull_candle_color = clrSpringGreen; input color current_price_line_color = clrGray; input string start_time = "2020.10.27 12:00"; input int vertical_margin = 100; //+------------------------------------------------------------------+ //| Expert initialization function | //+------------------------------------------------------------------+ int OnInit() { Comment(""); ChartNavigate(0,CHART_BEGIN,0); BlankChart(); ChartSetInteger(0,CHART_SHIFT,true); ChartSetInteger(0,CHART_FOREGROUND,false); ChartSetInteger(0,CHART_AUTOSCROLL,false); ChartSetInteger(0,CHART_SCALEFIX,false); ChartSetInteger(0,CHART_SHOW_OBJECT_DESCR,true); if (ObjectFind(0,"First OnInit")<0){ CreateStorageHLine("First OnInit",1);} if (ObjectFind(0,"Simulation Time")<0){ CreateTestVLine("Simulation Time",StringToTime(start_time));} string vlinename; for (int i=0; i<=1000000; i++){ vlinename="VLine"+IntegerToString(i); ObjectDelete(vlinename); } HideBars(SimulationBarTime(),0); //HideBar(SimulationBarTime()); UnBlankChart(); LabelCreate("New Buy Button","Buy",0,38,foreground_color); LabelCreate("New Sell Button","Sell",0,41,foreground_color); LabelCreate("Cancel Order","Close Order",0,44,foreground_color); LabelCreate("Risk To Reward","RR",0,52,foreground_color); LabelCreate("End","End",0,35,foreground_color); ObjectMove(0,"First OnInit",0,0,0); //--- create timer EventSetTimer(60); return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Expert deinitialization function | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { //--- destroy timer EventKillTimer(); } //+------------------------------------------------------------------+ //| Expert tick function | //+------------------------------------------------------------------+ void OnTick() { //--- } //+------------------------------------------------------------------+ //| ChartEvent function | //+------------------------------------------------------------------+ void OnChartEvent(const int id, const long &lparam, const double &dparam, const string &sparam) { if (id==CHARTEVENT_CHART_CHANGE){ int chartscale = ChartGetInteger(0,CHART_SCALE,0); int lastchartscale = ObjectGetDouble(0,"Last Chart Scale",OBJPROP_PRICE,0); if (chartscale!=lastchartscale){ int chartscale = ChartGetInteger(0,CHART_SCALE,0); ObjectMove(0,"Last Chart Scale",0,0,chartscale); OnInit(); }} if (id==CHARTEVENT_KEYDOWN){ if (lparam==VK_S){ IncreaseSimulationTime(); UnHideBar(SimulationPosition()); NavigateToSimulationPosition(); CreateHLine(0,"Current Price",Close[SimulationPosition()+1],current_price_line_color,1,0,true,false,false,"price"); SetChartMinMax(); }} if(id==CHARTEVENT_OBJECT_CLICK) { if(sparam=="New Sell Button") { distance = iATR(_Symbol,_Period,20,SimulationPosition()+1)/2; objectname = "Trade # "+IntegerToString(trade_ticket); CreateHLine(0,objectname,Close[SimulationPosition()+1],foreground_color,2,5,false,true,true,"Sell"); objectname = "TP for Trade # "+IntegerToString(trade_ticket); CreateHLine(0,objectname,Close[SimulationPosition()+1]-distance*2,clrAqua,2,5,false,true,true,"TP"); objectname = "SL for Trade # "+IntegerToString(trade_ticket); CreateHLine(0,objectname,Close[SimulationPosition()+1]+distance,clrRed,2,5,false,true,true,"SL"); trade_ticket+=1; } } if(id==CHARTEVENT_OBJECT_CLICK) { if(sparam=="New Buy Button") { distance = iATR(_Symbol,_Period,20,SimulationPosition()+1)/2; objectname = "Trade # "+IntegerToString(trade_ticket); CreateHLine(0,objectname,Close[SimulationPosition()+1],foreground_color,2,5,false,true,true,"Buy"); objectname = "TP for Trade # "+IntegerToString(trade_ticket); CreateHLine(0,objectname,Close[SimulationPosition()+1]+distance*2,clrAqua,2,5,false,true,true,"TP"); objectname = "SL for Trade # "+IntegerToString(trade_ticket); CreateHLine(0,objectname,Close[SimulationPosition()+1]-distance,clrRed,2,5,false,true,true,"SL"); trade_ticket+=1; } } if(id==CHARTEVENT_OBJECT_DRAG) { if(StringFind(sparam,"TP",0)==0) { is_tp_or_sl_line=1; } if(StringFind(sparam,"SL",0)==0) { is_tp_or_sl_line=1; } Comment(is_tp_or_sl_line); if(is_tp_or_sl_line==1) { trade_number = StringSubstr(sparam,7,9); entry_line_name = trade_number; tp_line_name = "TP for "+entry_line_name; sl_line_name = "SL for "+entry_line_name; entry_price = ObjectGetDouble(0,entry_line_name,OBJPROP_PRICE,0); tp_price = ObjectGetDouble(0,tp_line_name,OBJPROP_PRICE,0); sl_price = ObjectGetDouble(0,sl_line_name,OBJPROP_PRICE,0); sl_distance = MathAbs(entry_price-sl_price); TP_distance = MathAbs(entry_price-tp_price); reward = TP_distance/sl_distance; RR_string = "RR = 1 : "+DoubleToString(reward,2); ObjectSetString(0,"Risk To Reward",OBJPROP_TEXT,RR_string); is_tp_or_sl_line=0; } } if(id==CHARTEVENT_OBJECT_CLICK) { if(sparam=="Cancel Order") { click_to_cancel=1; Comment("please click the entry line of the order you wish to cancel."); } } if(id==CHARTEVENT_OBJECT_CLICK) { if(sparam!="Cancel Order") { if(click_to_cancel==1) { if(ObjectGetInteger(0,sparam,OBJPROP_TYPE,0)==OBJ_HLINE) { entry_line_name = sparam; tp_line_name = "TP for "+sparam; sl_line_name = "SL for "+sparam; ObjectDelete(0,entry_line_name); ObjectDelete(0,tp_line_name); ObjectDelete(0,sl_line_name); click_to_cancel=0; ObjectSetString(0,"Risk To Reward",OBJPROP_TEXT,"RR"); } } } } if (id==CHARTEVENT_OBJECT_CLICK){ if (sparam=="End"){ ObjectsDeleteAll(0,-1,-1); ExpertRemove(); }} } //+------------------------------------------------------------------+ void CreateStorageHLine(string name, double value){ ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,value); ObjectSetInteger(0,name,OBJPROP_SELECTED,false); ObjectSetInteger(0,name,OBJPROP_SELECTABLE,false); ObjectSetInteger(0,name,OBJPROP_COLOR,clrNONE); ObjectSetInteger(0,name,OBJPROP_BACK,true); ObjectSetInteger(0,name,OBJPROP_ZORDER,0); } void CreateTestHLine(string name, double value){ ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,value); ObjectSetInteger(0,name,OBJPROP_SELECTED,false); ObjectSetInteger(0,name,OBJPROP_SELECTABLE,false); ObjectSetInteger(0,name,OBJPROP_COLOR,clrWhite); ObjectSetInteger(0,name,OBJPROP_BACK,true); ObjectSetInteger(0,name,OBJPROP_ZORDER,0); } bool IsFirstOnInit(){ bool bbb=false; if (ObjectGetDouble(0,"First OnInit",OBJPROP_PRICE,0)==1){return true;} return bbb; } void CreateTestVLine(string name, datetime timevalue){ ObjectDelete(name); ObjectCreate(0,name,OBJ_VLINE,0,timevalue,0); ObjectSetInteger(0,name,OBJPROP_SELECTED,false); ObjectSetInteger(0,name,OBJPROP_SELECTABLE,false); ObjectSetInteger(0,name,OBJPROP_COLOR,clrNONE); ObjectSetInteger(0,name,OBJPROP_BACK,false); ObjectSetInteger(0,name,OBJPROP_ZORDER,3); } datetime SimulationTime(){ return ObjectGetInteger(0,"Simulation Time",OBJPROP_TIME,0); } int SimulationPosition(){ return iBarShift(_Symbol,_Period,SimulationTime(),false); } datetime SimulationBarTime(){ return Time[SimulationPosition()]; } void IncreaseSimulationTime(){ ObjectMove(0,"Simulation Time",0,Time[SimulationPosition()-1],0); } void NavigateToSimulationPosition(){ ChartNavigate(0,CHART_END,-1*SimulationPosition()+15); } void NotifyNotEnoughHistoricalData(){ BlankChart(); Comment("Sorry, but there is not enough historical data to load this time frame."+"\n"+ "Please load more historical data or use a higher time frame. Thank you :)");} void UnHideBar(int barindex){ ObjectDelete(0,"VLine"+IntegerToString(barindex+1)); } void BlankChart(){ ChartSetInteger(0,CHART_COLOR_FOREGROUND,clrNONE); ChartSetInteger(0,CHART_COLOR_CANDLE_BEAR,clrNONE); ChartSetInteger(0,CHART_COLOR_CANDLE_BULL,clrNONE); ChartSetInteger(0,CHART_COLOR_CHART_DOWN,clrNONE); ChartSetInteger(0,CHART_COLOR_CHART_UP,clrNONE); ChartSetInteger(0,CHART_COLOR_CHART_LINE,clrNONE); ChartSetInteger(0,CHART_COLOR_GRID,clrNONE); ChartSetInteger(0,CHART_COLOR_ASK,clrNONE); ChartSetInteger(0,CHART_COLOR_BID,clrNONE);} void UnBlankChart(){ ChartSetInteger(0,CHART_COLOR_FOREGROUND,foreground_color); ChartSetInteger(0,CHART_COLOR_CANDLE_BEAR,bear_candle_color); ChartSetInteger(0,CHART_COLOR_CANDLE_BULL,bull_candle_color); ChartSetInteger(0,CHART_COLOR_BACKGROUND,background_color); ChartSetInteger(0,CHART_COLOR_CHART_DOWN,foreground_color); ChartSetInteger(0,CHART_COLOR_CHART_UP,foreground_color); ChartSetInteger(0,CHART_COLOR_CHART_LINE,foreground_color); ChartSetInteger(0,CHART_COLOR_GRID,clrNONE); ChartSetInteger(0,CHART_COLOR_ASK,clrNONE); ChartSetInteger(0,CHART_COLOR_BID,clrNONE);} void HideBars(datetime starttime, int shift){ int startbarindex = iBarShift(_Symbol,_Period,starttime,false); ChartNavigate(0,CHART_BEGIN,0); if (Time[WindowFirstVisibleBar()]>SimulationTime()){NotifyNotEnoughHistoricalData();} if (Time[WindowFirstVisibleBar()]=0; i--){ vlinename="VLine"+IntegerToString(i); ObjectCreate(0,vlinename,OBJ_VLINE,0,Time[i],0); ObjectSetInteger(0,vlinename,OBJPROP_COLOR,background_color); ObjectSetInteger(0,vlinename,OBJPROP_BACK,false); ObjectSetInteger(0,vlinename,OBJPROP_WIDTH,vlinewidth); ObjectSetInteger(0,vlinename,OBJPROP_ZORDER,10); ObjectSetInteger(0,vlinename,OBJPROP_FILL,true); ObjectSetInteger(0,vlinename,OBJPROP_STYLE,STYLE_SOLID); ObjectSetInteger(0,vlinename,OBJPROP_SELECTED,false); ObjectSetInteger(0,vlinename,OBJPROP_SELECTABLE,false); } NavigateToSimulationPosition(); SetChartMinMax();} }//end of HideBars function void SetChartMinMax(){ int firstbar = WindowFirstVisibleBar(); int lastbar = SimulationPosition(); int lastbarwhenscrolled = WindowFirstVisibleBar()-WindowBarsPerChart(); if (lastbarwhenscrolled>lastbar){lastbar=lastbarwhenscrolled;} double highest = High[iHighest(_Symbol,_Period,MODE_HIGH,firstbar-lastbar,lastbar)]; double lowest = Low[iLowest(_Symbol,_Period,MODE_LOW,firstbar-lastbar,lastbar)]; ChartSetInteger(0,CHART_SCALEFIX,true); ChartSetDouble(0,CHART_FIXED_MAX,highest+vertical_margin*_Point); ChartSetDouble(0,CHART_FIXED_MIN,lowest-vertical_margin*_Point); } void LabelCreate(string labelname, string labeltext, int row, int column, color labelcolor){ int ylocation = row*18; int xlocation = column*10; ObjectCreate(0,labelname,OBJ_LABEL,0,0,0); ObjectSetString(0,labelname,OBJPROP_TEXT,labeltext); ObjectSetInteger(0,labelname,OBJPROP_COLOR,labelcolor); ObjectSetInteger(0,labelname,OBJPROP_FONTSIZE,10); ObjectSetInteger(0,labelname,OBJPROP_ZORDER,10); ObjectSetInteger(0,labelname,OBJPROP_BACK,false); ObjectSetInteger(0,labelname,OBJPROP_CORNER,CORNER_LEFT_UPPER); ObjectSetInteger(0,labelname,OBJPROP_ANCHOR,ANCHOR_LEFT_UPPER); ObjectSetInteger(0,labelname,OBJPROP_XDISTANCE,xlocation); ObjectSetInteger(0,labelname,OBJPROP_YDISTANCE,ylocation);} double GetHLinePrice(string name){ return ObjectGetDouble(0,name,OBJPROP_PRICE,0); } void CreateHLine(int chartid, string objectnamey, double objectprice, color linecolor, int width, int zorder, bool back, bool selected, bool selectable, string descriptionn) { ObjectDelete(chartid,objectnamey); ObjectCreate(chartid,objectnamey,OBJ_HLINE,0,0,objectprice); ObjectSetString(chartid,objectnamey,OBJPROP_TEXT,objectprice); ObjectSetInteger(chartid,objectnamey,OBJPROP_COLOR,linecolor); ObjectSetInteger(chartid,objectnamey,OBJPROP_WIDTH,width); ObjectSetInteger(chartid,objectnamey,OBJPROP_ZORDER,zorder); ObjectSetInteger(chartid,objectnamey,OBJPROP_BACK,back); ObjectSetInteger(chartid,objectnamey,OBJPROP_SELECTED,selected); ObjectSetInteger(chartid,objectnamey,OBJPROP_SELECTABLE,selectable); ObjectSetString(0,objectnamey,OBJPROP_TEXT,descriptionn); } //end of code
![]() | The need for a trading strategy in Forex markethttps://preview.redd.it/r6u8stdmeaw51.jpg?width=1320&format=pjpg&auto=webp&s=1b0292502d6e68f5c220af5a5851aeb8061b395bAlmost all trading manuals talk about the need to have your own trading strategy. First of all, the process of creating your trading scheme allows you to perfectly understand trading and exclude from it any eventuality that hides additional risk. Profitable forex strategy: it is a type of instruction for the trader, which helps to follow a clearly verified algorithm and safeguard his deposit from emotional errors and consequences of the unpredictability of the Forex currency market.Thanks to her, you will always know the answer to the question: how to act in certain market conditions. You have the conditions of opening a transaction, the conditions of its closing, likewise, you do not guess if it is time or not. You do what the trading strategy tells you. This does not mean that it cannot be changed. A healthy trading scheme in the forex market must be constantly adjusted, it must comply with the realities of current market trends, but there must be no unfounded arguments in it. >>> Forex Signals With Unbeatable Performance: Verified Forex Results And 5° Rated On Investing.com |Free Forex Signals Trial: CLICK HERE TO JOIN FOR FREE Profitable Forex Strategy RedditTypes of trading strategiesThe forms of a trading strategy can combine a variety of methods. However, several of the most commonly used options can be highlighted.
Three most profitable Forex strategiesImportant! These strategies are the basis for building your own trading system. Indicator settings and recommended pending order levels are for consultation only. If you do not get a satisfactory outcome in the test result or in a live account, that does not mean that the problem is the strategy. It is enough to choose individual parameters of indicators under a separate asset and under the current market situation.1. “Bali” scalping strategyThis strategy is one of the most popular, at least its description can be found on many websites. However, the recommendations will be different. According to the author's idea, "Bali" refers to scalping tactics, as it facilitates a fairly short stop loss (SL) and take profit (TP). However, the recommended time frame is high, because the signals appear not very often. The authors recommend using the H1 interval and the EUR / USD currency pair.Indicators used:
The weighted linear moving average here acts as an additional filter. Due to the fact that LWMA gives more weight to the values of the last periods, the indicator in the long periods practically excludes delays. In some cases, LWMA can give a signal beforehand, but in this strategy only the moving position relative to price is important. Bearish LWMA is a buy signal, sell bullish.
The indicator is also based on the moving average, but the formula is slightly different for the calculation. Its marking is more precise (the impact of price noise has been eliminated). It allows you to identify the twists of the trend compared to the usual mobile with a slight anticipation. Trend Envelopes has an interesting property: the color of the line and its new location changes when the price penetrates its old trend line, a kind of signal.
The indicator is placed in a separate window below the chart. This is an oscillator whose task is to determine the pivot points of the trend. And it does so much faster than standard oscillators. It has two lines: the signal is dotted, the additional line is solid, but the receiver has 2 kinds of colors (orange and green).
Also Read: Make Money With Trading Conditions to open a long position:
https://preview.redd.it/t48d55s8faw51.jpg?width=1000&format=pjpg&auto=webp&s=1e93863745e74dec536178539817225767cbeb1c The arrow indicates a signal candle where a Trend Envelopes color change occurred. Note (purple ovals) that the blue line is below the orange line and goes upwards (in other cases the signal should be ignored). In the signal candle, the green DSS of momentum line is above the dotted line. Conditions to open a short position:
Some examples where a transaction cannot be opened:
The signals are relatively rare, a signal can be expected for several days. In half the cases, it is better to control the transaction and close in advance, without waiting for profit taking. We do not operate at the time of flat. Try this strategy directly in the browser and see the result. >>> Forex Signals With Unbeatable Performance: Verified Forex Results And 5° Rated On Investing.com |Free Forex Signals Trial: CLICK HERE TO JOIN FOR FREE 2. “Va-Bank” candle strategyThis profitable Forex strategy is weekly and can be used on different currency pairs. It is based on the spring principle of price movement, what went up quickly, sooner or later must fall. To trade you will only need a schedule on any platform and W1 time frame (although the daily interval can be used).You should estimate the size of the candle bodies of different currency pairs ( AUDCAD , AUDJPY , AUDUSD , EURGBP , EURJPY , GBPUSD , CHFJPY , NZDCHF , EURAUD , AUDCHF , CADCHF , EURUSD , EURCAD , GBPCHF ) and choose the largest distance from the opening to the close of the candle in the framework of the week. In this to open a transaction at the beginning of the following week.Conditions to open a long position:
https://preview.redd.it/vuihnqspfaw51.jpg?width=1000&format=pjpg&auto=webp&s=7641e9d7701911cc255c4f0c8a53e1660c35c9fe On this chart it is clearly seen that after each large bearish candle there is necessarily a bullish candle (although smaller). The only question is what period to take where it makes sense to compare the relative length of the candles. Here everything is individual for each currency pair. Note that a rising candle was observed followed by a few small bearish candles. But when it comes to minimizing risks, it is best not to open a long response position, as the relatively small decline from the previous week may continue. Conditions to open a short position:
https://preview.redd.it/tv4zmf5ufaw51.jpg?width=1000&format=pjpg&auto=webp&s=61cd1dcfc4aebfa6f80343b6c51f7a6e46358602 The red arrows point to the candles that had a large body around the previous bullish candles. Almost all signals turned out to be profitable, except for the transactions indicated by a blue arrow. The shortcomings of the strategy are rare signs, albeit with a high probability of profit. The best thing is that it can be used in several pairs at the same time. This strategy has an interesting modification based on similar logic. Investors with little capital opt for intraday strategies, as their money is insufficient to exert radical pressure on the market. Therefore, if there is a strong move on the weekly chart, this may indicate a cluster of large strong traders. In other words, if there are three weekly candles in one direction, it is most likely the fourth. Here you also have to take into account the psychological factor, 4 candles is equal to one month, and those who "push" the market in one direction, within a month will begin to set profits. Strategy principle:
https://preview.redd.it/iu7cwa7xfaw51.jpg?width=1000&format=pjpg&auto=webp&s=9195d24b72d2bda5394614380e9e5bc167f108a5 Of the 5 patterns, 4 were effective. Lack of strategy, the pattern can be expected 2-3 months. But when launching a multi-currency strategy this expectation is justified. Consider swaps! >>> Forex Signals With Unbeatable Performance: Verified Forex Results And 5° Rated On Investing.com |Free Forex Signals Trial: CLICK HERE TO JOIN FOR FREE 3. Parabolic Profit Based on Moving AverageThis strategy is universal and is usually given as an example for novice traders. It uses classic EMA (Exponential Moving Average) indicators for MT4 and Parabolic SAR, which acts as a confirmatory indicator.The strategy is trend. Most sources suggest using it in "minutes", but price noise reduces its efficiency. It is better to use M15-M30 intervals. Currency pairs - Any, but you may need to adjust the indicator settings. Indicators used:
Conditions to open a long position:
https://preview.redd.it/4un92jlegaw51.jpg?width=1000&format=pjpg&auto=webp&s=406a700c00722349622d031e20d0858e4196d18b This screen shows that all three signals (two long and one short) were effective. It would be possible to enter the market on the candle by following the signal (in order to accurately verify the direction of the trend), but you would then miss the right time to enter. It is up to you to decide whether it is worth the risk. For one-hour intervals, these parameters hardly work, so be sure to check the performance of the indicators for each period of time in a minimum span of three years. And now that you know the theory, a few words about how to put these strategies into practice. Ready? Then let's get started! From the theory to the practiceStep 1. Open demo account It's free, requires no deposit, takes up to 15 minutes, and no verification required. On the main page of your broker there is for sures a button "Register", click and follow the instructions. An account can also be opened from other menus (for example, from the top menu, from the commercial conditions of the account, etc.).Step 2. Familiarize yourself with the functionality of the Personal Area. It won't take long. It is at the most user friendly and intuitive. You just need to understand the instruments of the platform and understand how the trades are opened. Step 3. Launch the trading platform. The Personal Area has the platform incorporated, but it is impossible to add templates. Hence, the "Bali" and "Parabolic Profit" strategies can only be executed on MT4. Characteristics of an effective Forex strategy RedditAnd finally, let's see what makes a profitable Forex strategy effective. What properties should it have? Perhaps three of the most important characteristics can be pointed out.
Conclusion. To successfully trade the Forex currency market, create your own trading strategy. Learn what's new, learn out-of-the-box trading schemes, and improve your individual action plan in the market. Only in this case, the trading results will satisfy you to the fullest. Success, dear readers! >>> Forex Signals With Unbeatable Performance: Verified Forex Results And 5° Rated On Investing.com |Free Forex Signals Trial: CLICK HERE TO JOIN FOR FREE Join the community for more articles on trading and making money on the Forex and Stock market. ------------------------------------------------ ------------------------------------------------ Disclosure: This post contains affiliate links, if you click and make a purchase I may receive a commission - This has NO extra cost for you. |
![]() | TL;DR - I will try and flip an account from $50 or less to $1,000 over 2019. I will post all my account details so my strategy can be seen/copied. I will do this using only three or four trading setups. All of which are simple enough to learn. I will start trading on 10th January. submitted by inweedwetrust to Forex [link] [comments] ---- As I see it there are two mains ways to understand how to make money in the markets. The first is to know what the biggest winners in the markets are doing and duplicating what they do. This is hard. Most of the biggest players will not publicly tell people what they are doing. You need to be able to kinda slide in with them and see if you can pick up some info. Not suitable for most people, takes a lot of networking and even then you have to be able to make the correct inferences. Another way is to know the most common trades of losing traders and then be on the other side of their common mistakes. This is usually far easier, usually everyone knows the mind of a losing trader. I learned about what losing traders do every day by being one of them for many years. I noticed I had an some sort of affinity for buying at the very top of moves and selling at the very bottom. This sucked, however, is was obvious there was winning trades on the other side of what I was doing and the adjustments to be a good trader were small (albeit, tricky). Thus began the study for entries and maximum risk:reward. See, there have been times I have bought aiming for a 10 pip scalps and hit 100 pips stops loss. Hell, there have been times I was going for 5 pips and hit 100 stop out. This can seem discouraging, but it does mean there must be 1:10 risk:reward pay-off on the other side of these mistakes, and they were mistakes. If you repeatedly enter and exit at the wrong times, you are making mistakes and probably the same ones over and over again. The market is tricking you! There are specific ways in which price moves that compel people to make these mistakes (I won’t go into this in this post, because it takes too long and this is going to be a long post anyway, but a lot of this is FOMO). Making mistakes is okay. In fact, as I see it, making mistakes is an essential part of becoming an expert. Making a mistake enough times to understand intrinsically why it is a mistake and then make the required adjustments. Understanding at a deep level why you trade the way you do and why others make the mistakes they do, is an important part of becoming an expert in your chosen area of focus. I could talk more on these concepts, but to keep the length of the post down, I will crack on to actual examples of trades I look for. Here are my three main criteria. I am looking for tops/bottoms of moves (edge entries). I am looking for 1:3 RR or more potential pay-offs. My strategy assumes that retail trades will lose most of the time. This seems a fair enough assumption. Without meaning to sound too crass about it, smart money will beat dumb money most of the time if the game is base on money. They just will. So to summarize, I am looking for the points newbies get trapped in bad positions entering into moves too late. From these areas, I am looking for high RR entries. Setup Examples. I call this one the “Lightning Bolt correction”, but it is most commonly referred to as a “two leg correction”. I call it a “Lightning Bolt correction” because it looks a bit like one, and it zaps you. If you get it wrong. https://preview.redd.it/t4whwijse2721.png?width=1326&format=png&auto=webp&s=c9050529c6e2472a3ff9f8e7137bd4a3ee5554cc Once I see price making the first sell-off move and then begin to rally towards the highs again, I am waiting for a washout spike low. The common trades mistakes I am trading against here is them being too eager to buy into the trend too early and for the to get stopped out/reverse position when it looks like it is making another bearish breakout. Right at that point they panic … literally one candle under there is where I want to be getting in. I want to be buying their stop loss, essentially. “Oh, you don’t want that ...okay, I will have that!” I need a precise entry. I want to use tiny stops (for big RR) so I need to be cute with entries. For this, I need entry rules. Not just arbitrarily buying the spike out. There are a few moving parts to this that are outside the scope of this post but one of my mains ways is using a fibs extension and looking for reversals just after the 1.61% level. How to draw the fibs is something else that is outside the scope of this but for one simple rule, they can be drawn on the failed new high leg. https://preview.redd.it/2cd682kve2721.png?width=536&format=png&auto=webp&s=f4d081c9faff49d0976f9ffab260aaed2b570309 I am looking for a few specific things for a prime setup. Firstly, I am looking for the false hope candles, the ones that look like they will reverse the market and let those buying too early get out break-even or even at profit. In this case, you can see the hammer and engulfing candle off the 127 level, then it spikes low in that “stop-hunt” sort of style. Secondly I want to see it trading just past my entry level (161 ext). This rule has come from nothing other than sheer volume. The amount of times I’ve been stopped out by 1 pip by that little sly final low has gave birth to this rule. I am looking for the market to trade under support in a manner that looks like a new strong breakout. When I see this, I am looking to get in with tiny stops, right under the lows. I will also be using smaller charts at this time and looking for reversal clusters of candles. Things like dojis, inverted hammers etc. These are great for sticking stops under. Important note, when the lightning bolt correction fails to be a good entry, I expect to see another two legs down. I may look to sell into this area sometimes, and also be looking for buying on another couple legs down. It is important to note, though, when this does not work out, I expect there to be continued momentum that is enough to stop out and reasonable stop level for my entry. Which is why I want to cut quick. If a 10 pips stop will hit, usually a 30 pips stop will too. Bin it and look for the next opportunity at better RR. https://preview.redd.it/mhkgy35ze2721.png?width=1155&format=png&auto=webp&s=a18278b85b10278603e5c9c80eb98df3e6878232 Another setup I am watching for is harmonic patterns, and I am using these as a multi-purpose indicator. When I see potentially harmonic patterns forming, I am using their completion level as take profits, I do not want to try and run though reversal patterns I can see forming hours ahead of time. I also use them for entering (similar rules of looking for specific entry criteria for small stops). Finally, I use them as a continuation pattern. If the harmonic pattern runs past the area it may have reversed from, there is a high probability that the market will continue to trend and very basic trend following strategies work well. I learned this from being too stubborn sticking with what I thought were harmonic reversals only to be ran over by a trend (seriously, everything I know I know from how it used to make me lose). https://preview.redd.it/1ytz2431f2721.png?width=1322&format=png&auto=webp&s=983a7f2a91f9195004ad8a2aa2bb9d4d6f128937 A method of spotting these sorts of M/W harmonics is they tend to form after a second spike out leg never formed. When this happens, it gives me a really good idea of where my profit targets should be and where my next big breakout level is. It is worth noting, larger harmonics using have small harmonics inside them (on lower time-frames) and this can be used for dialling in optimum entries. I also use harmonics far more extensively in ranging markets. Where they tend to have higher win rates. Next setup is the good old fashioned double bottoms/double top/one tick trap sort of setup. This comes in when the market is highly over extended. It has a small sell-off and rallies back to the highs before having a much larger sell-off. This is a more risky trade in that it sells into what looks like trending momentum and can be stopped out more. However, it also pays a high RR when it works, allowing for it to be ran at reduced risk and still be highly profitable when it comes through. https://preview.redd.it/1bx83776f2721.png?width=587&format=png&auto=webp&s=2c76c3085598ae70f4142d26c46c8d6e9b1c2881 From these sorts of moves, I am always looking for a follow up buy if it forms a lightning bolt sort of setup. All of these setups always offer 1:3 or better RR. If they do not, you are doing it wrong (and it will be your stop placement that is wrong). This is not to say the target is always 1:3+, sometimes it is best to lock in profits with training stops. It just means that every time you enter, you can potentially have a trade that runs for many times more than you risked. 1:10 RR can be hit in these sorts of setups sometimes. Paying you 20% for 2% risked. I want to really stress here that what I am doing is trading against small traders mistakes. I am not trying to “beat the market maker”. I am not trying to reverse engineer J.P Morgan’s black boxes. I do not think I am smart enough to gain a worthwhile edge over these traders. They have more money, they have more data, they have better softwares … they are stronger. Me trying to “beat the market maker” is like me trying to beat up Mike Tyson. I might be able to kick him in the balls and feel smug for a few seconds. However, when he gets up, he is still Tyson and I am still me. I am still going to be pummeled. I’ve seen some people that were fairly bright people going into training courses and coming out dumb as shit. Thinking they somehow are now going to dominate Goldman Sachs because they learned a chart pattern. Get a grip. For real, get a fucking grip. These buzz phrases are marketeering. Realististically, if you want to win in the markets, you need to have an edge over somebody. I don’t have edges on the banks. If I could find one, they’d take it away from me. Edges work on inefficiencies in what others do that you can spot and they can not. I do not expect to out-think a banks analysis team. I know for damn sure I can out-think a version of me from 5 years ago … and I know there are enough of them in the markets. I look to trade against them. I just look to protect myself from the larger players so they can only hurt me in limited ways. Rather than letting them corner me and beat me to a pulp (in the form of me watching $1,000 drop off my equity because I moved a stop or something), I just let them kick me in the butt as I run away. It hurts a little, but I will be over it soon. I believe using these principles, these three simple enough edge entry setups, selectiveness (remembering you are trading against the areas people make mistakes, wait for they areas) and measured aggression a person can make impressive compounded gains over a year. I will attempt to demonstrate this by taking an account of under $100 to over $1,000 in a year. I will use max 10% on risk on a position, the risk will scale down as the account size increases. In most cases, 5% risk per trade will be used, so I will be going for 10-20% or so profits. I will be looking only for prime opportunities, so few trades but hard hitting ones when I take them. I will start trading around the 10th January. Set remind me if you want to follow along. I will also post my investor login details, so you can see the trades in my account in real time. Letting you see when I place my orders and how I manage running positions. I also think these same principles can be tweaked in such a way it is possible to flip $50 or so into $1,000 in under a month. I’ve done $10 to $1,000 in three days before. This is far more complex in trade management, though. Making it hard to explain/understand and un-viable for many people to copy (it hedges, does not comply with FIFO, needs 1:500 leverage and also needs spreads under half a pip on EURUSD - not everyone can access all they things). I see all too often people act as if this can’t be done and everyone saying it is lying to sell you something. I do not sell signals. I do not sell training. I have no dog in this fight, I am just saying it can be done. There are people who do it. If you dismiss it as impossible; you will never be one of them. If I try this 10 times with $50, I probably am more likely to make $1,000 ($500 profit) in a couple months than standard ideas would double $500 - I think I have better RR, even though I may go bust 5 or more times. I may also try to demonstrate this, but it is kinda just show-boating, quite honestly. When it works, it looks cool. When it does not, I can go bust in a single day (see example https://www.fxblue.com/users/redditmicroflip). So I may or may not try and demonstrate this. All this is, is just taking good basic concepts and applying accelerated risk tactics to them and hitting a winning streak (of far less trades than you may think). Once you have good entries and RR optimization in place - there really is no reason why you can not scale these up to do what may people call impossible (without even trying it). I know there are a lot of people who do not think these things are possible and tend to just troll whenever people talk about these things. There used to be a time when I’d try to explain why I thought the way I did … before I noticed they only cared about telling me why they were right and discussion was pointless. Therefore, when it comes to replies, I will reply to all comments that ask me a question regarding why I think this can be done, or why I done something that I done. If you are commenting just to tell me all the reasons you think I am wrong and you are right, I will probably not reply. I may well consider your points if they are good ones. I just do not entering into discussions with people who already know everything; it serves no purpose. Edit: Addition. I want to talk a bit more about using higher percentage of risk than usual. Firstly, let me say that there are good reasons for risk caps that people often cite as “musts”. There are reasons why 2% is considered optimum for a lot of strategies and there are reasons drawing down too much is a really bad thing. Please do not be ignorant of this. Please do not assume I am, either. In previous work I done, I was selecting trading strategies that could be used for investment. When doing this, my only concern was drawdown metrics. These are essential for professional money management and they are also essential for personal long-term success in trading. So please do not think I have not thought of these sorts of things Many of the reasons people say these things can’t work are basic 101 stuff anyone even remotely committed to learning about trading learns in their first 6 months. Trust me, I have thought about these concepts. I just never stopped thinking when I found out what public consensus was. While these 101 rules make a lot of sense, it does not take away from the fact there are other betting strategies, and if you can know the approximate win rate and pay-off of trades, you can have other ways of deriving optimal bet sizes (risk per trade). Using Kelly Criterion, for example, if the pay-off is 1:3 and there is a 75% chance of winning, the optimal bet size is 62.5%. It would be a viable (high risk) strategy to have extremely filtered conditions that looked for just one perfect set up a month, makingover 150% if it was successful. Let’s do some math on if you can pull that off three months in a row (using 150% gain, for easy math). Start $100. Month two starts $250. Month three $625. Month three ends $1,562. You have won three trades. Can you win three trades in a row under these conditions? I don’t know … but don’t assume no-one can. This is extremely high risk, let’s scale it down to meet somewhere in the middle of the extremes. Let’s look at 10%. Same thing, 10% risk looking for ideal opportunities. Maybe trading once every week or so. 30% pay-off is you win. Let’s be realistic here, a lot of strategies can drawdown 10% using low risk without actually having had that good a chance to generate 30% gains in the trades it took to do so. It could be argued that trading seldomly but taking 5* the risk your “supposed” to take can be more risk efficient than many strategies people are using. I am not saying that you should be doing these things with tens of thousands of dollars. I am not saying you should do these things as long term strategies. What I am saying is do not dismiss things out of hand just because they buck the “common knowns”. There are ways you can use more aggressive trading tactics to turn small sums of money into they $1,000s of dollars accounts that you exercise they stringent money management tactics on. With all the above being said, you do have to actually understand to what extent you have an edge doing what you are doing. To do this, you should be using standard sorts of risks. Get the basics in place, just do not think you have to always be basic. Once you have good basics in place and actually make a bit of money, you can section off profits for higher risk versions of strategies. The basic concepts of money management are golden. For longevity and large funds; learned them and use them! Just don’t forget to think for yourself once you have done that. Update - Okay, I have thought this through a bit more and decided I don't want to post my live account investor login, because it has my full name and I do not know who any of you are. Instead, for copying/observing, I will give demo account login (since I can choose any name for a demo). I will also copy onto a live account and have that tracked via Myfxbook. I will do two versions. One will be FIFO compliant. It will trade only single trade positions. The other will not be FIFO compliant, it will open trades in batches. I will link up live account in a week or so. For now, if anyone wants to do BETA testing with the copy trader, you can do so with the following details (this is the non-FIFO compliant version). Account tracking/copying details. Low-Medium risk. IC Markets MT4 Account number: 10307003 Investor PW: lGdMaRe6 Server: Demo:01 (Not FIFO compliant) Valid and Invalid Complaints. There are a few things that can pop up in copy trading. I am not a n00b when it comes to this, so I can somewhat forecast what these will be. I can kinda predict what sort of comments there may be. Some of these are valid points that if you raise I should (and will) reply to. Some are things outside of the scope of things I can influence, and as such, there is no point in me replying to. I will just cover them all here the one time. Valid complains are if I do something dumb or dramatically outside of the strategy I have laid out here. won't do these, if I do, you can pitchfork ----E Examples; “Oi, idiot! You opened a trade randomly on a news spike. I got slipped 20 pips and it was a shit entry”. Perfectly valid complaint. “Why did you open a trade during swaps hours when the spread was 30 pips?” Also valid. “You left huge trades open running into the weekend and now I have serious gap paranoia!” Definitely valid. These are examples of me doing dumb stuff. If I do dumb stuff, it is fair enough people say things amounting to “Yo, that was dumb stuff”. Invalid Complains; “You bought EURUSD when it was clearly a sell!!!!” Okay … you sell. No-one is asking you to copy my trades. I am not trading your strategy. Different positions make a market. “You opened a position too big and I lost X%”. No. Na uh. You copied a position too big. If you are using a trade copier, you can set maximum risk. If you neglect to do this, you are taking 100% risk. You have no valid compliant for losing. The act of copying and setting the risk settings is you selecting your risk. I am not responsible for your risk. I accept absolutely no liability for any losses. *Suggested fix. Refer to risk control in copy trading software “You lost X trades in a row at X% so I lost too much”. Nope. You copied. See above. Anything relating to losing too much in trades (placed in liquid/standard market conditions) is entirely you. I can lose my money. Only you can set it up so you can lose yours. I do not have access to your account. Only mine. *Suggested fix. Refer to risk control in copy trading software “Price keeps trading close to the pending limit orders but not filling. Your account shows profits, but mine is not getting them”. This is brokerage. I have no control over this. I use a strategy that aims for precision, and that means a pip here and there in brokerage spreads can make a difference. I am trading to profit from my trading conditions. I do not know, so can not account for, yours. * Suggested fix. Compare the spread on your broker with the spread on mine. Adjust your orders accordingly. Buy limit orders will need to move up a little. Sell limit orders should not need adjusted. “I got stopped out right before the market turned, I have a loss but your account shows a profit”. This is brokerage. I have no control over this. I use a strategy that aims for precision, and that means a pip here and there differences in brokerage spreads can make a difference. I am trading to profit from my trading conditions. I do not know, so can not account for, yours. ** Suggested fix. Compare the spread on your broker with the spread on mine. Adjust your orders accordingly. Stop losses on sell orders will need to move up a bit. Stops on buy orders will be fine. “Your trade got stopped out right before the market turned, if it was one more pip in the stop, it would have been a winner!!!” Yeah. This happens. This is where the “risk” part of “risk:reward” comes in. “Price traded close to take profit, yours filled but mines never”. This is brokerage. I have no control over this. I use a strategy that aims for precision, and that means a pip here and there differences in brokerage spreads can make a difference. I am trading to profit from my trading conditions. I do not know, so can not account for, yours. (Side note, this should not be an issue since when my trade closes, it should ping your account to close, too. You might get a couple less pips). *** Suggested fix. Compare the spread on your broker with the spread on mine. Adjust your orders accordingly. Take profits on buys will need to move up a bit. Sell take profits will be fine. “My brokers spread jumped to 20 during the New York session so the open trade made a bigger loss than it should”. Your broker might just suck if this happens. This is brokerage. I have no control over this. My trades are placed to profit from my brokerage conditions. I do not know, so can not account for yours. Also, if accounting for random spread spikes like this was something I had to do, this strategy would not be a thing. It only works with fair brokerage conditions. *Suggested fix. Do a bit of Googling and find out if you have a horrific broker. If so, fix that! A good search phrase is; “(Broker name) FPA reviews”. “Price hit the stop loss but was going really fast and my stop got slipped X pips”. This is brokerage. I have no control over this. I use a strategy that aims for precision, and that means a pip here and there differences in brokerage spreads can make a difference. I am trading to profit from my trading conditions. I do not know, so can not account for, yours. If my trade also got slipped on the stop, I was slipped using ECN conditions with excellent execution; sometimes slips just happen. I am doing the most I can to prevent them, but it is a fact of liquidity that sometimes we get slipped (slippage can also work in our favor, paying us more than the take profit would have been). “Orders you placed failed to execute on my account because they were too large”. This is brokerage. I have no control over this. Margin requirements vary. I have 1:500 leverage available. I will not always be using it, but I can. If you can’t, this will make a difference. “Your account is making profits trading things my broker does not have” I have a full range of assets to trade with the broker I use. Included Forex, indices, commodities and cryptocurrencies. I may or may not use the extent of these options. I can not account for your brokerage conditions. I think I have covered most of the common ones here. There are some general rules of thumb, though. Basically, if I do something that is dumb and would have a high probability of losing on any broker traded on, this is a valid complain. Anything that pertains to risk taken in standard trading conditions is under your control. Also, anything at all that pertains to brokerage variance there is nothing I can do, other than fully brief you on what to expect up-front. Since I am taking the time to do this, I won’t be a punchbag for anything that happens later pertaining to this. I am not using an elitist broker. You don’t need $50,000 to open an account, it is only $200. It is accessible to most people - brokerage conditions akin to what I am using are absolutely available to anyone in the UK/Europe/Asia (North America, I am not so up on, so can’t say). With the broker I use, and with others. If you do not take the time to make sure you are trading with a good broker, there is nothing I can do about how that affects your trades. I am using an A book broker, if you are using B book; it will almost certainly be worse results. You have bad costs. You are essentially buying from reseller and paying a mark-up. (A/B book AKA ECN/Market maker; learn about this here). My EURUSD spread will typically be 0.02 pips or so, if yours is 1 pip, this is a huge difference. These are typical spreads I am working on. https://preview.redd.it/yc2c4jfpab721.png?width=597&format=png&auto=webp&s=c377686b2485e13171318c9861f42faf325437e1 Check the full range of spreads on Forex, commodities, indices and crypto. Please understand I want nothing from you if you benefit from this, but I am also due you nothing if you lose. My only term of offering this is that people do not moan at me if they lose money. I have been fully upfront saying this is geared towards higher risk. I have provided information and tools for you to take control over this. If I do lose people’s money and I know that, I honestly will feel a bit sad about it. However, if you complain about it, all I will say is “I told you that might happen”, because, I am telling you that might happen. Make clear headed assessments of how much money you can afford to risk, and use these when making your decisions. They are yours to make, and not my responsibility. Update. Crazy Kelly Compounding: $100 - $11,000 in 6 Trades. $100 to $11,000 in 6 trades? Is it a scam? Is it a gamble? … No, it’s maths. Common sense risk disclaimer: Don’t be a dick! Don’t risk money you can’t afford to lose. Do not risk money doing these things until you can show a regular profit on low risk. Let’s talk about Crazy Kelly Compounding (CKC). Kelly criterion is a method for selecting optimal bet sizes if the odds and win rate are known (in other words, once you have worked out how to create and assess your edge). You can Google to learn about it in detail. The formula for Kelly criterion is; ((odds-1) * (percentage estimate)) - (1-percent estimate) / (odds-1) X 100 Now let’s say you can filter down a strategy to have a 80% win rate. It trades very rarely, but it had a very high success rate when it does. Let’s say you get 1:2 RR on that trade. Kelly would give you an optimum bet size of about 60% here. So if you win, you win 120%. Losing three trades in a row will bust you. You can still recover from anything less than that, fairly easily with a couple winning trades. This is where CKC comes in. What if you could string some of these wins together, compounding the gains (so you were risking 60% each time)? What if you could pull off 6 trades in a row doing this? Here is the math; https://preview.redd.it/u3u6teqd7c721.png?width=606&format=png&auto=webp&s=3b958747b37b68ec2a769a8368b5cbebfe0e97ff This shows years, substitute years for trades. 6 trades returns $11,338! This can be done. The question really is if you are able to dial in good enough entries, filter out enough sub-par trades and have the guts to pull the trigger when the time is right. Obviously you need to be willing to take the hit, obviously that hit gets bigger each time you go for it, but the reward to risk ratio is pretty decent if you can afford to lose the money. We could maybe set something up to do this on cent brokers. So people can do it literally risking a couple dollars. I’d have to check to see if there was suitable spreads etc offered on them, though. They can be kinda icky. Now listen, I am serious … don’t be a dick. Don’t rush out next week trying to retire by the weekend. What I am showing you is the EXTRA rewards that come with being able to produce good solid results and being able to section off some money for high risk “all or nothing” attempts; using your proven strategies. I am not saying anyone can open 6 trades and make $11,000 … that is rather improbable. What I am saying is once you can get the strategy side right, and you can know your numbers; then you can use the numbers to see where the limits actually are, how fast your strategy can really go. This CKC concept is not intended to inspire you to be reckless in trading, it is intended to inspire you to put focus on learning the core skills I am telling you that are behind being able to do this. |
Hidden Scalping Code is the best forex trading solution to avoid trading during any uncertain market periods. Hidden Scalping Code does it’s works This will help you sell better on the foreign exchange market and make more money. This program will analyze all the graphics for you every second! So, you get the best trend of the pair and time frame, at any time you want. Hidden Scalping Code Free Download This Hidden Scalping Code software is less expensive compared to other forex software. You need a computer with an internet connection. All setup information is provided in the Hidden Scalping Code user’s guide. Hidden Scalping Code Software ReviewsHidden Scalping Code: This is a special trend indicator that is available only on the official website. Absolutely no repaint! It is designed to work on M15, M30, H1, H4 and D1 timeframes. Works for all currency pairs, but best on: EUUSD, GBP/USD, USD/JPY, EUJPY, GBP/JPY, USD/CHF and USD/CAD.
How to install Candle Time countdown indicator in MetaTrader 4 / MT4: Download/Copy/Save the MQ4/EX4 file into your C:\Program Files\MetaTrader 4\experts\indicators folder (or change the folder to your installation sometimes forex broker name) Restart your MetaTrader 4 application (assuming it’s currently open) … or Launch your MetaTrader 4 application MT4 Indicator Download – Instructions. Candle Time End And Spread is a Metatrader 4 (MT4) indicator and the essence of the forex indicator is to transform the accumulated history data. Candle Time End And Spread provides for an opportunity to detect various peculiarities and patterns in price dynamics which are invisible to the naked eye. Time To Next Candle Metatrader 4 Forex Indicator. The Time To Next Candle forex Metatrader 4 displays the time left to next candle for any timeframe and currency pair. Free Download. Download the “TimeToNextCandle.mq4” MT4 indicator. Example Chart. The AUD/USD M30 chart below displays the Time To Next Candle forex indicator in action. Candle Time Indicator adalah indikator MT4 gratis.Indikator ini bukanlah indikator yang menampilkan sinyal buy dan sell, tetapi indikator ini sangat berguna dan merupakan salah satu indikator pavorit saya, kegunaan indikator Candle Time yaitu sesuai dengan namanya “waktu Candle” yaitu menampilkan sisa waktu untuk candle (lilin) saat ini pada grafik Candle. The Candle time indicator for the MT4 trading platform is a handy tool to have for traders. If you are just starting out trading with forex, then the candle time or the candlestick time indicator can be highly beneficial. Download the Candle Time Indicator: Candle Time Indicator. Download the Candle Time Indicator for MT4. To receive my email 100% sure: Put my email on your whitelist! Request ... That forex indicator shows how much time is left on current candle and what is the spread. It’s very helpful for forex traders trading in a specific time and low spread conditions. The information is displayed in the right bottom corner of the chart. How to install the Candle Time End And Spread indicator on your Metatrader trading plaftform? Download the indicator by clicking “LINK ... Indicator for average candle size for up or down candle? 1 reply. MT4 candle-by-candle manual backtesting 8 replies. How to make EA that send Open Price of Candle for every new candle 5 replies. Day's first H4 candle correlation to daily candle 14 replies. Correlation between first 4 hour candle and daily candle 1 reply This forex indicator, the Candle Time Indicator for MetaTrader 4 (MT4), helps users know how much time on a candlestick is remaining. The Candle Time indicator is simple but incredibly powerful and useful tool. To download the P4L CandleTime.mq4 indicator, check the bottom of this post. It’s one of the best forex time indicators in its category. Candle Time End And Spread ist ein Metatrader 4 (MT4) Anzeige und die Essenz der Forex Indikator ist um das angesammelte Geschichte Daten zu transformieren. Candle Time End And Spread bietet die Möglichkeit, verschiedene Besonderheiten und Muster in der Preisdynamik zu erkennen, die mit bloßem Auge nicht sichtbar sind.
[index] [12002] [19474] [2218] [13399] [28948] [8921] [12002] [6005] [1032] [23733]
ForexMT4Indicators.com are a compilation of free download of forex strategies, forex systems, forex mt4 indicators, forex mt5 indicators, technical analysis and fundamental analysis in forex trading. ENJOY THE VIDEO PLEASE LIKE SHARE COMMENT SUBSCRIBE TO DOWNLOAD https://drive.google.com/uc?id=0B0_2xIiDQUWLMFZVZzRTWUo2bDg Cut and Dry - Electronic Hard... 👉👉👉This Indicator Works Only Below 2 Broker👇👇👇 Reliable Binary Options Broker with a ★Profit of up to 100%★ http://bit.ly/2sohvSu Never Miss ... ICmarkets - Best broker for Scalping: https://icmarkets.com/?camp=17903 Tradersway (US client - non ICmarkets region): https://www.tradersway.com/?ib=1368965... ForexMT4Indicators.com is a compilation of free download of forex strategies, forex systems, forex mt4 indicators, forex mt5 indicators, technical analysis and fundamental analysis in forex trading. We are so glad with you to be with us and make profits together click here: https://bit.ly/ultimateprofitsolution Join The #1 Ranked Live Community Strategy ... Install My Analysis App https://play.google.com/store/apps/details?id=com.mobile.fxmarkit Free FX Signals App https://play.google.com/store/apps/details?id=c...