目次
概要
『あの4億円脱税主婦が教えるFXの奥義』(池辺雪子)の袋とじで紹介されているyukikovチャートをMT4で表示しようと思いました。
誰かしらが、既にインジケータを作成しているだろうと思って、ググってみましたが、見つけることができませんでした。
そこで、自分で作成することにしました。
ソースコード
以下のサイトで転がっていた平均足のインジケータを参考に作成しました。
http://fx-mt4ea.com/ea/tag/%E5%B9%B3%E5%9D%87%E8%B6%B3/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
#property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Red #property indicator_color2 RoyalBlue //---- parameters extern ENUM_MA_METHOD MaMetod = MODE_SMA; extern int MaPeriod = 3; //---- buffers double ExtMapBuffer1[]; double ExtMapBuffer2[]; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int init() { //---- indicators SetIndexStyle(0,DRAW_HISTOGRAM, 0, 3, Red); SetIndexBuffer(0, ExtMapBuffer1); SetIndexStyle(1,DRAW_HISTOGRAM, 0, 3, RoyalBlue); SetIndexBuffer(1, ExtMapBuffer2); //---- indicator buffers mapping SetIndexBuffer(0,ExtMapBuffer1); SetIndexBuffer(1,ExtMapBuffer2); //---- initialization done return(0); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int start() { if(Bars<=10) return(0); int ExtCountedBars=IndicatorCounted(); //---- check for possible errors if(ExtCountedBars<0) return(-1); //---- last counted bar will be recounted if(ExtCountedBars>0) ExtCountedBars--; int pos=Bars-ExtCountedBars-1; while(pos>=0) { double maOpen=iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_OPEN,pos+1); double maClose=iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_CLOSE,pos+1); double maLow=iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_LOW,pos+1); double maHigh=iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_HIGH,pos+1); double haOpen=(maOpen+maClose+maLow+maHigh)/4; double haClose=Open[pos]; ExtMapBuffer1[pos]=haOpen; ExtMapBuffer2[pos]=haClose; pos--; } return(0); } //+------------------------------------------------------------------+ |
結果
関連記事
- 『あの4億円脱税主婦が教えるFXの奥義』(池辺雪子)の手法を検証
(※RSIの乖離を利用した手法)
- yukikovチャートを使用したトレードルールを検証
- 『あの4億円脱税主婦が教えるFXの奥義』(池辺雪子)の感想・レビュー
~FXを始めてみませんか?~
XMは、口座を開設するだけで、3000円のボーナスが無料でもらえます。
資金はないけど、FXを試しに挑戦してみたい方でも大丈夫です。
(サイト主もXMを使用しています)