Gori ..o(^^)/~~ ♪ さんの日記

新しい10 昔の10  100新しい方へ移動 100昔へ移動

表示の数値と線の値が違うののがわかりました。  2012/04/18(水) 05:34:32
 移動平均線---------------- MODE_SMA-----↓↓

ExtMapBuffer1[i]=iMA(NULL,0, Peried1,0,MODE_SMA,PRICE_CLOSE,i);

数値表示-----------MODE_EMA--↓↓

" , iMA ( NULL, 0, 500, 0, MODE_EMA, PRICE_CLOSE, 360 ),


ひどい時には 20Pipsも違ってました。 、、

一件落着、、、(^。^)y-.。o○

インディケ−ターを作成して見ました。  2012/04/17(火) 10:35:12
 MA 3本移動平均から8本に増やして Commentを入れて見ました。

。。。。が どう言う訳か線にマウスを当てて見ると

 Comment数値が実際と合わない ?  (;_;)/~~~

(無題)  2012/04/17(火) 10:27:14
 #property indicator_chart_window

#property indicator_buffers 8


#property indicator_color1 Yellow
#property indicator_color2 Red
#property indicator_color3 Green
#property indicator_color4 Magenta
#property indicator_color5 Turquoise
#property indicator_color6 Green
#property indicator_color7 BlueViolet
#property indicator_color8 Red

#property indicator_width1 2
#property indicator_width2 1
#property indicator_width3 1
#property indicator_width4 1
#property indicator_width5 1
#property indicator_width6 4
#property indicator_width7 1
#property indicator_width8 3

//---- input parameters

extern int Peried1= 2;
extern int Peried2= 25;
extern int Peried3= 100;
extern int Peried4= 200;
extern int Peried5= 500;
extern int Peried6=1000;
extern int Peried7=1500;
extern int Peried8=3000;


//---- buffers

double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
double ExtMapBuffer5[];
double ExtMapBuffer6[];
double ExtMapBuffer7[];
double ExtMapBuffer8[];

//+--------------------------------------

//Custom initialization function

//+--------------------------------------


int init()

{

//---- indicators

SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_LINE); SetIndexBuffer(1,ExtMapBuffer2);
SetIndexStyle(2,DRAW_LINE); SetIndexBuffer(2,ExtMapBuffer3);
SetIndexStyle(3,DRAW_LINE); SetIndexBuffer(3,ExtMapBuffer4);
SetIndexStyle(4,DRAW_LINE); SetIndexBuffer(4,ExtMapBuffer5);
SetIndexStyle(5,DRAW_LINE); SetIndexBuffer(5,ExtMapBuffer6);
SetIndexStyle(6,DRAW_LINE); SetIndexBuffer(6,ExtMapBuffer7);
SetIndexStyle(7,DRAW_LINE); SetIndexBuffer(7,ExtMapBuffer8);


//----return(0);

}

//+------------------------------------
//Custom deinitialization function
//+-------------------------------------

int deinit()

{


return(0);

}


//+-----------------------------------------

//Custom iteration function

//+---------------------------------------

int start()

{

int counted_bars=IndicatorCounted();

int i;

i = Bars-counted_bars-1; while(i>=0)

{

ExtMapBuffer1[i]=iMA(NULL,0, Peried1,0,MODE_SMA,PRICE_CLOSE,i);
ExtMapBuffer2[i]=iMA(NULL,0, Peried2,0,MODE_SMA,PRICE_CLOSE,i);
ExtMapBuffer3[i]=iMA(NULL,0, Peried3,0,MODE_SMA,PRICE_CLOSE,i);
ExtMapBuffer4[i]=iMA(NULL,0, Peried4,0,MODE_SMA,PRICE_CLOSE,i);
ExtMapBuffer5[i]=iMA(NULL,0, Peried5,0,MODE_SMA,PRICE_CLOSE,i);
ExtMapBuffer6[i]=iMA(NULL,0, Peried6,0,MODE_SMA,PRICE_CLOSE,i);
ExtMapBuffer7[i]=iMA(NULL,0, Peried7,0,MODE_SMA,PRICE_CLOSE,i);
ExtMapBuffer8[i]=iMA(NULL,0, Peried8,0,MODE_SMA,PRICE_CLOSE,i);


i--;

}

{


Comment(" \n 8MA", " \n\n No1 2 , 000= " , iMA ( NULL, 0, 2, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No1 2 , 360= " , iMA ( NULL, 0, 2, 0, MODE_EMA, PRICE_CLOSE, 360 ),

" \n\n No2 25 , 000= " , iMA ( NULL, 0, 25, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No2 25 , 360= " , iMA ( NULL, 0, 25, 0, MODE_EMA, PRICE_CLOSE, 360 ),

" \n\n No3 100 , 000= " , iMA ( NULL, 0, 100, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No3 100 , 360= " , iMA ( NULL, 0, 100, 0, MODE_EMA, PRICE_CLOSE, 360 ),

" \n\n No4 200 , 000= " , iMA ( NULL, 0, 200, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No4 200 , 360= " , iMA ( NULL, 0, 200, 0, MODE_EMA, PRICE_CLOSE, 360 ),

" \n\n No5 500 , 000= " , iMA ( NULL, 0, 500, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No5 500 , 360= " , iMA ( NULL, 0, 500, 0, MODE_EMA, PRICE_CLOSE, 360 ),

" \n\n No6 1000 , 000= " , iMA ( NULL, 0, 1000, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No6 1000 , 360= " , iMA ( NULL, 0, 1000, 0, MODE_EMA, PRICE_CLOSE, 360 ),

" \n\n No7 1500 , 000= " , iMA ( NULL, 0, 1500, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No7 1500 , 360= " , iMA ( NULL, 0, 1500, 0, MODE_EMA, PRICE_CLOSE, 360 ),

" \n\n No8 3000 , 000= " , iMA ( NULL, 0, 3000, 0, MODE_EMA, PRICE_CLOSE, 0 ), " \n No8 3000 , 360= " , iMA ( NULL, 0, 3000, 0, MODE_EMA, PRICE_CLOSE, 360 ) );


}


return(0);

}

//+----------------------------------------

MT4 EA 開発  2012/04/05(木) 00:57:42
 MA から始めたが

分足でBucktestしているが発生する足を全部売買してしまう。 (ーー;)

上昇で青く矢印 下落で赤く矢印は出て 売り買いの切り替えは

巧く行ってるようだが .............。

ふ〜〜う。 大変ですわ  ^^;

ガス会社  2012/02/07(火) 15:27:57
 点検に来ると言うので 物置状態の部屋を
片付けて そちこちに新聞を被せて

終わらせた。  、、、^^;

札幌の降雪量  2012/02/07(火) 15:24:43
 .


http://www.sweb.co.jp/tenki/record/record_snow.html

毎日寒い日が続きますね。  2012/02/02(木) 13:14:33
 .


.


http://page.freett.com/kion/graph/heinen/heinen_sprkushi.gif


立春から反発するようです。 買いです。(^。^)y-.。o○

うう〜〜  2012/01/26(木) 17:06:41
 今度はギックリ腰 咳をしても響く

2012  良い年じゃないね〜〜  ^^;

椅子から立ち上がるのも   よっこらしょ 。。。。

今回の原因はこの辺りの様です。  2012/01/11(水) 10:25:04
 キーゼルバッハ部位以外では下鼻甲介後端、中鼻道など鼻腔中部〜後部からの出血がみられます。キーゼルバッハ部位からの出血よりも動脈性出血が多い、血管が太い、出血点を確認しにくいなどの理由で出血量が多くなりがちです

鼻血  2012/01/11(水) 10:22:26
 鼻出血の8割以上は鼻中隔(鼻の真中にあるしきい)前方にあるキーゼルバッハ部位から生じます(図1)。一般に鼻腔内は血管の分布が密ですが、特にキーゼルバッハ部位は血管網、血管吻合が著しい場所です。この部位は外界に近く、いろいろな刺激を受けやすいために鼻出血の好発部位になっています。小児の場合はほとんどがこの場所からの出血です。動脈性出血と静脈性出血は半々といわれています。
 キーゼルバッハ部位以外では下鼻甲介後端、中鼻道など鼻腔中部〜後部からの出血がみられます。キーゼルバッハ部位からの出血よりも動脈性出血が多い、血管が太い、出血点を確認しにくいなどの理由で出血量が多くなりがちです。一般にキーゼルバッハ部位からの鼻出血より治療に難渋します。成人では約2、3割がこの鼻腔中部〜後部からの出血で、「大人の鼻血は要注意」といわれる原因になっています。

新しい10 昔の10  100新しい方へ移動 100昔へ移動

一覧へ戻る