Optimize single Moving average trading

0
(0)
Nama:
Optimize single Moving average trading
Pengarang: tflores (2010.09.22 10:58)
Dimuat turun: 4866
Muat turun:
Optimize single Moving average trading 1
MAProfitSingle.mq4 (22.0 Kb) Lihat
Optimize single Moving average trading 2

This code is following the idea of MA Profit, except that it is using a single Moving Average instead of the cross moving average system.

Using only a single moving average speeds up optimization, it can check all moving averages between 10 dan 1000 in nearly no time.

Trading with single moving average gives three signals. Usually it works with large moving averages like 150 or even 500 or more.

  1. The curve is below the candles - beli
  2. The curve is above the candles - jual
  3. the curve is horizontal and many times crossing the candles - close positions and wait

By switching the period everything is re-calculated, you can check if different time frames (minit, jam, day and so on) show the same signal. Usually a signal is stronger if displayed by by multiple time frames. Also you can switch to lower time frame in order to find an entry point into a long or short trade.

The indicator draws 4 kinds of triangles

  1. Red with thick border: short trade with win
  2. Red with thin border: short trade lost
  3. Green with thick border: Long trade in win
  4. Green with thin border: Long trade lost

If a new signal is available the indicator can display an alert or use voice output. In this case you need the speak.dll, for example from http://codebase.mql4.com/5036.

The indicator dispays the status and the number for good and wrong signals in its status line.

The optimization can be in two modes:

  1. Simulated trading. The best moving average is the one which gave the best profit
  2. Counting intersections between candles. The less time the curve and the candles hit each other the better the moving average is.

Parameter: (look source code also)

extern bool bOptimize=true; // betul: Find the best single MA by optimizing (switch time frame to re-optimize)
extern bool bOptimizeIntersect=true; // betul: optimize for minimum intersections, otherwise optimize for max profit
extern int PeriodMA=400; // If you do not want to optimize, you can define a period
extern int Method=0; // Method for MA 0 = Simple, 1 = Expotential, 2 = Smoothed, 3 = Linear weighted
extern bool DrawTringles=true; // Draws triangles for the simulated trading
extern int MinMA=5; // Minimum test for optimizing
extern int MaxMA=500; // Maximum test for optimizing
extern int StepMA=1; // Step during optimizion, 1 tests every MA, 10 tests every 10th etc.
extern int CountOptimize=300; // Number of candles for optimizing
extern int RepaintBars=3000; // Number of candles on which we draw triangles and calculate the win/loss
extern bool Alarm=true; // Make a visible alert on new signal
extern bool bSpeak=true; // Speak the alert with gspeak

Moving average trading gives some very good signal but also a lot of false signals. I am currently seeking more ideas of filtering the false signal in order to publish my moving average expert advisor.

Plese use at your own risk!

3 komen Untuk menyiarkan ulasan baharu, tolonglah log masuk atau mendaftar

This indicator has errors when attempting to compile it.

If you manage to fix it please post it in full code post.

 

15.12.2010 03:07 FXIA

  1. jika (Bars != cBars)
           newBar = true;
       else  
           newBar = false;
       cBars = Bars;

    This is unsafe. Once Bars reaches Maximum Bars On Chart, the indicator stops working as Bars and cBars will not change.

    bool newBar = Time0 < Masa[0]; Time0 = Time[0];

  2. The code checking for a symbol/TF change is unnecessary. When that occurs you'll get a deInit() init() cycle.

  3. Hard coded array size but never checked if exceeded
    gTradeID++;
       ArrayResize(gTradeOpen,gTradeID+1);
       ArrayResize(gTradeMin,gTradeID+1);
       ArrayResize(gTradeMax,gTradeID+1);
       ArrayResize(gTradeCmd,gTradeID+1);
       ArrayResize(gTradeStart,gTradeID+1);
       ArrayResize(gTradeEnd,gTradeID+1);
    gTradeOpen[gTradeID] = price;
    ...
24.09.2010 17:40 WHRoeder

1. Time Filter 2. Daily average range

Betapa bergunanya siaran ini?

Klik pada bintang untuk menilainya!

Penilaian purata 0 / 5. Kiraan undi: 0

Tiada undi setakat ini! Jadilah yang pertama menilai siaran ini.

Kami memohon maaf kerana siaran ini tidak berguna untuk anda!

Mari kita perbaiki siaran ini!

Beritahu kami cara kami boleh menambah baik siaran ini?



Pengarang: Pasukan Wiki Forex
Kami adalah pasukan Pedagang Forex yang sangat berpengalaman [2000-2023] yang berdedikasi untuk menjalani kehidupan dengan syarat kita sendiri. Objektif utama kami adalah untuk mencapai kebebasan dan kebebasan kewangan, dan kami telah meneruskan pendidikan kendiri dan memperoleh pengalaman yang luas dalam pasaran Forex sebagai cara kami untuk mencapai gaya hidup mampan diri.