Saturday, July 28, 2007

attantion-new-expert-indicator-abhaexper


attantion-new-expert-indicator-abhaexpert
attantion-new-expe...
Hosted by eSnips

kase-peak complited with ebook


kase peak
kase peak.rar
Hosted by eSnips

Saturday, July 21, 2007

about RSIOMA & MTF-HEINAKEN

im realy sorry for the trouble at RSIOMA and MTF heiken file..i have upload it once more...PLESE CHECK UP..

if u have any critic or question please send me a message.

REGRADS..

ROMANTISI-EA



Recommended:

The most important of this EA is Market Hour Setting

Use in pair GU and set market hour setting
StartHour = London market open.
EndHour = London market close.
if your broker is in
1. GMT, Set StartHour = 8, EndHour = 16.
2. GMT+1, Set StartHour = 9, EndHour = 17.
3. GMT+2, Set StartHour = 10, EndHour = 18.

DivShare File - ROMANTISI-EA.rar

STEP indicator compilation

step
step.rar
Hosted by eSnips

super-MTF



super MTF
super MTF.rar
Hosted by eSnips

mtf-damianvmeter



mtf damianvmeter
mtf damianvmeter.r...
Hosted by eSnips

simple 4hr indicator

simple 4hr indicator2
simple 4hr indicat...
Hosted by eSnips


very simple indicator for 4hr tf or higher

buy-sell-indicator



Display Buy/Sell arrows as the MACD or RVI indicators are changing. When both indicators will match a message will be display and a sound alert will play.
This indicator will print sell/buy alert only if time period is 1H or higher.

buy sell indicator
buy sell indicator...
Hosted by eSnips

Belle-system



Belle
Belle.rar
Hosted by eSnips

Multi-xpMA EA Version 1.0

MultixpMA V 1.0.0


Multi-xpMA is a creation based on the xpMA indicator designed by Codersguru. I had some initial ideas on how to use this indicator but needed to be able to use more than one. I approached a very generous and gifted coder that goes by the name of Ralph Ronquist. I wanted to design an EA that was the mother of all moving average EA’s. Ralph decided to take on the project and wouldn’t take any money for it and did it for his love of coding. Without him this would still be a concept and can’t thank him enough. He has moved on to other endeavors and left the community with more than a solid foundation to work with. With that said, on to the EA.

Basic abilities

The EA was designed to allow just about any moving average logic to be plugged in. It can be as simple as two moving averages crossing or as complex as six different types and periods of moving averages agreeing with the original xpMA “signal” and another six moving averages “crossing” and they can be from any separate timeframe you desire. The limit is not six by the way, that is just an example. The possibilities are almost infinite.

Settings
I will go through most of the EA settings and then discuss the moving averages xpma.csv file.

TrailingStopType =1,2,3
1 (default) to start trailing at 1*TrailingStop profit,
2 To start trail immediately
3 To limit by high/low of n:th prior candle

TrailingStop
For type 1 and 2, this would be your standard trail behind price by X
For type 3 this will be the number of candles back to use as your stoploss

BreakEvenAfterPips
Self explanatory

CloseMA
NOTE – Defining 0 for CloseMA will equal line one of xpma.csv, 1 would equal line 2 and so on.
This has a few different meanings based on what style of moving average system you are using; signals or crosses. Signals will be used as the first example. In your xpma.csv (more on this later) you have defined three moving averages at periods 10, 20, 30. To place an order, all signals must agree. One exit strategy is to exit on signal change defined by CloseMa. If you were to define CloseMa=0, then at the first opposite signal of the 10 period MA the order would be closed. If you were to define CloseMa=2 the order would be closed on the first opposite signal of the 30 period MA. This would be best used for allowing the MA’s to get you in but let the money management functions get you out.

In the case of a crossing setup the CloseMa would define which cross would close the trade. In this case the value will be which MA must be crossed to close the trade. CloseMa in this case can not =0 as the first MA can not cross itself. A setting of CloseMa=1 would close the trade when the 10 period crosses the 20, and CloseMa=2 would be the 10 period MA crossing the 30.

UseRSIfilter True/False
RSIPeriod Self explanatory
RSIPrice Self explanatory
RSIBUYthreshold A buy only allowed greater than this value
RSISELLthreshold A sell only allowed less than this value

UseCCIfilter True/False
CCIPeriod Self explanatory
CCIPrice Self explanatory
CCIBUYthreshold A buy only allowed greater than this value
CCISELLtreshold A sell only allowed less than this value

UseVolumeFilter True/False
VolumeRange A cumulative value of number of bars back to include
VolumeThreshold A trade only allowed when volume exceeds this parameter

OneEntryPerBar True/False Self explanatory
ReverseTradesOnly True/False When true the trade sequence will be buy-sell-buy-sell-buy-sell, when false consecutive trades in the same direction are allowed

StopLoss Self explanatory
TakeProfit Self explanatory
Slippage Self explanatory


MaxOpenTrade Self explanatory
MinPriceDistance Self explanatory

UseHourTrade True/False;
StartHour Hour to allow trading to begin
End Hour Hour to shut down the EA

Lots Number of lots
MM True/False, use money management or not
AccountIsMicro True/False
DecreaseFactor Decrease lots after loss by this amount
Risk % of capital to use

EnableAlert True/False
EmailAlert True/False



XPMA.CSV
This is the heart of multixpMAEA. It resides in your metatrader installdirectory \tester\files. It consists of a series of 10 numbers with the meanings as follows.
The first 8 numbers are straight from the xpMA indicator as defined by Codersguru.
These are taken directly from www.xpworks.com written by Codersguru and all credit goes to him.


TimeFrame: (default 0)
Set it to the time frame you want to work with. The default value is 0 which means it will works with the current time frame of the chart
MA_Period:
The period of the moving average
MA_Type:
The moving average type (Review table 1).
MA_Applied:
The Moving Average Applied price (Review table 2).
T3MA_VolumeFactor:
This setting is for the T3MA indicator only, The Volume Factor
JMA_Phase:
This setting is for the JMA indicator only, The Phase
Step_Period:
How many bars in the history the xpMA indicator will look back to determine the direction of the moving average
Shift:
0 is current bar, 1 previous bar, 2 previous bar to 1, etc.
Moving Average Type Constant name Integer value
Simple moving average MODE_SMA 0
Exponential moving average MODE_EMA 1
Smoothed moving average MODE_SMMA 2
Linear weighted moving average MODE_LWMA 3
Double Exponential Moving Average MODE_DEMA 4
Triple Exponential Moving Average MODE_TEMA 5
T3 Moving Average MODE_T3MA 6
Jurik Moving Average MODE_JMA 7
Hull Moving Average MODE_HMA 8
DECEMA Moving Average MODE_DECEMA 9
SALT indicator MODE_SALT 10


Applied Price type Constant name Integer value
Close price. PRICE_CLOSE 0
Open price. PRICE_OPEN 1
High price. PRICE_HIGH 2
Low price. PRICE_LOW 3
Median price, (high+low)/2. PRICE_MEDIAN 4
Typical price, (high+low+close)/3. PRICE_TYPICAL 5
Weighted close price, (high+low+close+close) PRICE_WEIGHTED 6

The last 2 values are as follows.

SignalType
type = 1 tells that this MA provides its agreement signal by means of
line direction being upwards or downwards, as indicated by the red and blue
line colors; This is what defines the system as a signal system
* type = 2 tells that this MA provides its agreement signal by means of its
value being above or below the value of the preceding type 2 MA; This is what defines the system as a cross system
* type = 0 (or anything else) tells that this MA always agrees.

Span
"span" is used for type 1 MA to make it stop agreeing after that many bars of the
same direction. span = 0 means "no span limit".

So what you end up with is an xpma.csv file that will look like so..


Timeframe Period MA Type MA Applied T3 Volume Jma Phase StepPeriod Shift Signaltype Span
0 50 8 0 0.8 0 1 0 1 0


Examples of xpma.csv

The following would be the signal setup in the beginning of this document. A 10, 20, 30 “signal” for buy or sell.
0 10 8 0 0.8 0 1 0 1 0
0 20 8 0 0.8 0 1 0 1 0
0 30 8 0 0.8 0 1 0 1 0

Set your CloseMa to close the order on the 10 period =0, the 20 period =1, or the 30 period =2.
If you would like a confirm on entry, simply change one or all of your shift values to 1

We will use the same example except use a “cross” system.

0 10 8 0 0.8 0 1 0 2 0
0 20 8 0 0.8 0 1 0 2 0
0 30 8 0 0.8 0 1 0 2 0


Simply change the 1 of signaltype to 2 and the values of the moving average are taken rather than the line directions.

It is possible to use both a cross and signal by combining both the above .csv settings. Use your imagination, make a rainbow.

multixpma-EA
multixpma-EA.rar
Hosted by eSnips

Monday, July 16, 2007

DOSR

DOSR candlestick
DOSR candlestick.r...
Hosted by eSnips


Daily Open-SR Technique
Somehow my deep desire to share with traders around the world overcame all possible public negative comments and also prompted me to come here, one of the best forex forums in the world. I believe there are many profitable systems out there, however, it still boils down to our determination and discipline to follow a mechanical system. Here is one of the strategies that I am using now, which is called The Daily Open Support and Resistance Technique, or DOSR in short. This discretionary trading method is very simple and does not rely on any indicators but only the formation of candlestick, which is also the price action.

Attached is a brief description on how this DOSR works.

Feel free to share your comments. Hopefully someone can make an EA out of this. Thank you.

Special thanks to the indicator created by mqldev.

BLEASSING system-EA with ebooks

blessing system-EA
blessing system-EA...
Hosted by eSnips

SKY DART systerm



SKY DART
SKY DART.rar
Hosted by eSnips

Friday, July 13, 2007

xo-serg


xo serg
xo serg.rar
Hosted by eSnips

swap-indicator-market-value

swap-indicator-market-value
swap-indicator-mar...
Hosted by eSnips

TSR dynamic



TSR
TSR.rar
Hosted by eSnips

i-5days



i-5days
i-5days.rar
Hosted by eSnips

stoch-cci-bars-updated



stoch cci bars updated
stoch cci bars upd...
Hosted by eSnips

mtf-stoch-break


mtf stoch break
mtf stoch break.ra...
Hosted by eSnips

ang_AZad-system


ang_AZad system
ang_AZad system.ra...
Hosted by eSnips

Tuesday, July 10, 2007

Panglima Berantai

Panglima Berantai
Panglima Berantai....
Hosted by eSnips

Saturday, July 7, 2007

FOREX toolbar

fx-bar
fx-bar.rar
Hosted by eSnips



What does the FOREX toolbar let me do?

Get various Forex news headlines and live Forex quotes automatically!

Usefull Forex tools with a click of a mouse:
Currency converter, Pivot Point Calculator, Forex daily high/low, and more.

Get instant access to the TOP Forex trading sites in these categories:

- Forex brokers - Find your Forex broker. Open demo and live Forex trading accounts.
- Forex signal - Find the Forex trading software and signals that work best for you.
- Forex education - Learn Forex from the best! Get Forex training or take a Forex trading course.
- Forex forums - Join the top Forex forums out there. Get useful Forex trading tips.
- Forex blogs - Read what an experienced Forex trader has to say about Forex.
- Forex charts - access free and professional Forex charts.

Forex TV - Watch The latest Forex news and Forex commentary.

Chat with other Forex traders who have the toolbar installed!

Search from anywhere on the web.

Get notified when you receive new e-mails to your POP3, Yahoo!,
Gmail, or Hotmail accounts.

It's FREE, with no spyware or viruses, does not open pop-ups
or hijack your searches, and no personal information is required.

PIP-MASTER-EA

PIP MASTER
PIP MASTER.rar
Hosted by eSnips

NINA-CATFX--EA

NINA-CATFX- EA
NINA-CATFX- EA.rar
Hosted by eSnips

TRENDLINE-TRADER-EA

TRENDLINE TRADER
TRENDLINE TRADER.r...
Hosted by eSnips

wooden-lsma

wooden-lsma
wooden-lsma.rar
Hosted by eSnips

marks-trend-system


marks trend system
marks trend system...
Hosted by eSnips

mt4_brokers_server

mt4_brokers_server
mt4_brokers_server...
Hosted by eSnips

Wednesday, July 4, 2007

OSMA system



the osma
the osma.rar
Hosted by eSnips

Phoenix 2007-EA (BETA)+ebooks UPDATED

DOWNLOAD PASSWORD:phoenix

Delta-indicator



delta
delta.rar
Hosted by eSnips

Tuesday, July 3, 2007

briantrend-system-complited-with-ebook

briantrend system complited with ebook
briantrend system ...
Hosted by eSnips