Desmond Wright
Desmond Wright
3.5 (9)
  • Information
9+ years
experience
3
products
315
demo versions
0
jobs
0
signals
0
subscribers
Desmond Wright
Desmond Wright
https://www.mql5.com/en/market/product/20994#full_description

Multi Currency Trend Strength Indicator Price
Are you tired of having many open charts and watching many different currency pairs? M‌CTSIP will monitor the strengths of 30 currency pairs and show you the best pairs to trade, no more guessing which currency is stronger / weaker, no more trading a pair that is not moving positively.

You may have many charts open trying to determine the best currency pair to trade on may timeframes, ‌M‌CTSIP can monitor currency strengths on a different timeframe to the current timeframe.

This is a essential tool in manual trading and gives the trader a advantage knowing how strong a currency really is.

MCTSIP monitors the strengths of the following currencies : EUR, USD, GBP, JPY, AUD and NZD.
Each currency's movement is measured against 7 other currencies to determine the strength.
This is shown in the indicator window for each currency, and will show the strongest to weakest currency.
The sensitivity can be adjusted by changing the MA values to make the indicator more or less sensitive to currency movements, and so customized to the time frame you are trading on.

Note: the indicator may not show correctly in the strategy tester, as it has to process large amounts of history data for each pair.



Technical
This indicator shows multiple individual currencies strengths as measured against all the other currencies. It measures the price movements of the applied chart currency pair comparing the base and counter currency occurring in all the other base / counter currencies and shows the strength movements. The rate of change or rate of change strength is shown and can be adjusted for sensitivity by the Moving Average numbers.



Features
Monitor EUR USD GBP JPY AUD NZD (CAD and CHF coming soon).
Individual currency strengths data.
Current best high /low currency pair with movement arrow.
Applied chart movement arrows, no redraw.
Alerting capability.
Desmond Wright
Added topic help me code something better than this.
this works but its rubbish. during the first 1 or < 5 minutes of a new hour or bar ,  I want to check for a condition:  string check;  Hr=Hour();  Min=Minute();      check = "n";    if(Hr == 0
Desmond Wright
Added topic a noobie question - help please
Hi there Im not asking for code , just a point in the right direction: I need to define a changing variable, kinda hard to explain , so Ive sort've coded it:   extern int number= 'xxx';       // user input 1/2/3 . . etc
Desmond Wright
Added topic a little help with EA and indicator please
Hi there So I have managed to get the buffer values from my indicator into my EA using iCustom() , no problems and all is workinf well. Im struggling to pass inputs from the EA to the indicator , when the EA starts up. can someone just point me in
Desmond Wright
Added topic help - how to only read back 8 bars
I only want my ea to read back 8 bars , here is my code but its not working , seems it reads all the bars ... int start_bar = Bars ; //Print (start_bar); for ( int bar = start_bar; bar >= 0 ; bar--) { //if (bar > 8) break; value = (iClose( NULL
Desmond Wright
Added topic help with break out of while statement
sometimes my trades don't always go through , so I run it in a while loop , but if I get error 134 (no enough money , it must break out the while loop , cant seem to get it right , can someone help me please
Desmond Wright
Added topic correct way to open orders ? , ordersend ...
I use this code to open orders , the OP_SELL works correctly , BUT the OP_BUY is always 2 pips below of the 'take_profit' level , why ? , something wrong ? OrderSend ( Symbol (), OP_BUY, lots ,Ask, 3 , Ask - stop_loss * Point , Bid + take_profit *
Desmond Wright
Added topic orderclose - bid or ask for buy or sell ?
hi guys what is the correct bid / ask usage when closing buy or sell orders: is the correct ? OrderClose(OrderTicket(),OrderLots(),Bid,slippage,CLR_NONE); ----- buy orders OrderClose(OrderTicket(),OrderLots(),Ask,slippage,CLR_NONE); ----- sell orders
Desmond Wright
Registered at MQL5.community
Desmond Wright
Added topic limitation on comments - doesnt make sense .......
ok take the code below and compile it, there will be no errors. now un comment one of the comments and compile it, it gives a error: " ')' - wrong parameters count C:\Program Files\Ava MetaTrader\experts\junk.mq4 (68, 10) " does anyone have
Desmond Wright
Added topic help - is my if / else statement correct ?
the code section below: it does not execute: store_ind3="blank"; store1_ind3="blank"; am I doing something wrong ???? ... string store_ind3; string store1_ind3; ... RefreshRates();
Desmond Wright
Added topic 5000 to 50 000 EA - 10 year backtest results
my latest ea, still in beta mode, working with a difficult currency, here are some results: check out my website: http://sites.google.com/site/dmweadev/
Desmond Wright
Added topic help - why am I getting:OrderClose error 138 - closing code included in post
I keep getting this error when optimizing: 2010.05.18 00:31:40 1999.10.14 13:55 uma test-3.1 USDCHF,H1: OrderClose error 138 I have deleted the history file and re downloaded it 3 times now here is the closing code: //close order routine
Desmond Wright
Added topic Simple Trail EA
This EA will move the stop loss (S/L) on your MetaTrader 4 terminal up or down depending if the trades are buy or sell automatically depending on the settings that have been entered. Introduction ------------ This EA will move the stop loss (S/L) on
Desmond Wright
Added topic the best news trading EA
With the EA you will be a able to set a time and date that 2 or more pending orders will be placed, buy and sell. It is very useful when trading news events because you can program your date / time that you want your pending orders placed. If the
Desmond Wright
Added topic backtesting Ea closes all open trades when done - how to stop this ?
Hi all when I do a backtest of a Ea it always closes all the open trades when it completes, this gives incorrect results on the report, is there any way to configure the backtest to just leave the open trades open when testing is completed
Desmond Wright
Added topic help - how to place mark on chart using date / time
Hi all you expert programmers. simply please tell me what function to use to place a single mark (arrow, X, etc ...) on a chart . IE if (price > price2) ........"place mark on chart" thanks