the image shows the effectiveness of the smoothing properties of the "ma_parabolic_st2" indicator, compared to the standard "parabolic sar" indicator.the purple dotted line is the ...
the trading signals function is based on the values of the osma indicator.add the function to the ea: #include <signal.mqh>condition if(getsignal()==1) is for buyscondition i...
it is based on the filtr_ao indicator, which has been shared on kroufr. modified to output arrows on the chart. added the ability to output signals both to alert and comment (set t...
aggressiveness shows the number of points the instrument passes within one candle on average, analyzing the last myperiod periods. no matter in which direction!volatility - the siz...
trading signals function. based on the values of the cci indicator.add the function to the ea: #include <signal.mqh> condition if(getsignal()==1) is for buys. condition if(ge...
many probably encountered a situation where the market requires instant decisions (especially true for pipsing and scalping), but the process of calculating the acceptable risk, an...
manages all orders in the terminal. if there is no required profit - it waits. suitable both for manual trading and for expert advisors that lack trailing stop.if the required prof...
the suggestions mentioned in the comments on the original page have been taken into account. 1. added coloring of the histogram bars relative to the previous bar.the original indic...
a line y=ax+bcan be drawn through a set of points, and the distance from each point to the line will be approximately balanced.to plot the highlineand lowlinelines it uses the set ...
if the blue bar is directed upwards, the price will also go up. downwards - likewise.dots indicate the identified peaks (fractals) of the specified indicator.red bars are the maxim...
how it works:places two pending orders at the distance of netstep from the current price if one of them triggers, the other one is deleted places one more pending order in the dire...
the script allows to preview the indicator behavior on a real chart from the specified point with the minimum computation resources, both in the mode of manual control over the shi...
in essence, it implements the idea of visual interpretation of the state of the fourth dimension of the chaos theory by b. williams - zone.information on the chaos theory in genera...
the script is designed for setting two shift parameters and the number of calculated data for an indicator, ea or another script via the global variables. it is also possible to au...
the script works on any symbol and timeframe.in order to start the script, drag onto the current chart. in the "general" tab of the script parameters window, flag the "allow dll im...
oscillator of the osma type but interpreted for the atr oscillator. it is used as an additional signal (crossing 0) to exit the position with the maximum profit. normalized for the...
the correct order is a set of moving averages located consecutively. the correct order for an uptrend would be the situation, when the 10-period simple moving average (sma) is on a...
i wrote this code using a lot of different ideas and/or code from this website, thanks to all of them.this ea uses different indicators: adx, stochatisc, accelerator...this ea is o...
ahlanbikathis indicator provides an easy way to find out the current direction of a pair. if you notice in the image below, just by looking at the last line you already know what w...
continuously records tick data in format "datetime, bid, ask, volume" even after restart.you can use it for broker data manipulation evidence, collect you own history data, compare...
the indicator places a panel on your chart that shows 5 economic events listed on the forex factory calendar. you can filter out/in the events of high, medium, or low impact, speak...
indicator calculates profit (loss) of the current orders on the symbol. you can freely drag and drop a line to display the current profit or loss.parameters to count in money or i...
priceposition indicator provides the position of price in the point of angle when the price rises above (buy) or falls below the angle section line (sell). indicator also shows cur...
ahlanbikaeach buy and sell will be marked by arrow that will show the right direction to help you make the decision when the appropriate time to buy or sell. red arrow to sell. blu...
the script modifies all orders (market and pending) on the symbol with specified take profit and stop loss.if the take profit or(and) stop loss is incorrect, then the value is not ...
fast time range checking function. doesn't use slow string parsing.function returns true if time in range, false otherwise.usage: drop .mq4 file to mql4\libraries\ folder.add this ...
how to use: like any other ea, open it in the strategy tester, choose the 'symbolname' and a small timeframe (m1 or m5). if you would need to convert within a time-period (eg: 2010...
two ea's. one places stop orders the other places limit orders. the ea does not use any form of technical analysis, just price movement. ea works on any timeframe. easy to back tes...
this indicator is based on the moving average, but it doesn't use any standard mt4/mt5 moving average indicators. it uses its own formula to calculate the moving average with a com...
awesome oscillator, customizable, 4 colors, and some more parametersi started with default metaquotes awesome oscillator.i borrowed the 4 colors idea from aims youtube videos. and ...
the indicator determines the inside bar and marks its high/low. it is plotted based on the closed candles (does not redraw). the identified inside bar can be displayed on smaller p...
library of trading functions (position size, open, close position etc.)from the eas "ocean breeze" and "graalino-pro".it can be of big help for novice traders as an example how to ...