Codes

RosePipsIndicator for MetaTrader 4

This indicator will calculate pips wins and losses for any pair with a parsar and doji star trading strategy. You can see pip targets and losses and see if you can find a winning pair with this. 5MIN charts are the best on current settings

CSV signals to Expert for MetaTrader 4

How to load csv signals into your expert

Awesome Bar Counter for MetaTrader 4

This is a indicator to see if you can find a trend by drawing a graph with bars counted

HardcoreFX Expert Advisor for MetaTrader 4

This is the Expert Advisor with Money Management and signal selection. You can add your own signals in this EA very easily by just adjusting the function signals

Trainyourself EA for MetaTrader 4

This is an EA I coded to make trades and experiment with trading in the Strategy Tester. Drag and drop objects in a yellow basket and control your orders

Forum

Best formula to find peaks please.

What is the best formula to find the last 5 peaks of the market. Would you use high[iHighest(NULL,0,MODE_HIGH,InpDepth,i)]; Can I use a channel to find it. What is the best accurate method to find the best peaks? With a standard deviation channel it might be more accurate I think

Strategy tester charts and live charts differ with technical indicators

I have tested out two indicators, moving averages and RVI with live trading and the strategy tester . They seem to differ evetime. I cant seem to backtest and get perfect matching to calculate my winning strategy I have two screenshots attached of live chart and a strategy tester chart. Its off by a

Orderhistory Matching howto

/** Scan History **/ bool InHistory(double magic) { int i,hstTotal=OrdersHistoryTotal(); for(i=0;i<hstTotal;i++) { OrderSelect(i, SELECT_BY_POS, MODE_HISTORY); if(OrderMagicNumber() == magic) { return(TRUE); break; } else { return(FALSE); } } } This function of mine does not seem to work, I need

List currency pairs function

Hi Is there a function or script available for listing all the brokers available currency pairs

Icustom am I missing something here.

#property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Yellow #property indicator_color2 Yellow #property indicator_color3 Yellow /** Extern variables **/ double sar1 = 0.002 ; double sar2 = 0.2 ; int profit = 100 ; //In Pips int loss = 2500 ; //In Pips int

Parabolic Sar Exact price onchange

Hi With the parabolic sar I would like to make an indicator I have more precise. When the Isar changes on a 1 hourly bar chart how do you calculate the price where it changed the isar from long to short

Metatrader Update

Hi Did MetaTrader update overnight and change its folder structure

Fibonacci Highest and Lowest

Hello again What is your best formula for finding fibonacci highs and lows. I have this one that works for me but It draws from windowsfirstVisible bar.. What is the best formula you have found for these highs and lows? int fibHigh = iHighest ( Symbol (), Period (), MODE_HIGH , WindowFirstVisibleBar

Unique groups of numbers

Say for example I have a range of numbers I can use from 1 - 10 ok. What I actually want is unique sequences of that range, ie. 10,9,7,8,4,6,5,1,3,2 2,1,4,3,5,6,7,8,9,10 I know you can shuffle arrays but how do get uniques shuffles with maybe a seed number like srand to create random groups of

Trade with time instead of price.

Who is the best coder to look at with the most profitable expert advisor that trades with time instead of price. So I mean you trade now and you exit in a few minutes calculated by a formula. What is the best formula for this and who is the best guy with the most profitable expert advisor to look at