joiner312 發表於 15-9-29 22:32

請問高手

請問高手 1. k棒紅色k棒跌是綠色 成交量 跟k棒一樣顏色 該如何寫     

     2.成交量劃一條橫線  5000值  該如何寫    

                                  謝謝大家



blj0511 發表於 15-10-1 16:16

本帖最後由 blj0511 於 15-10-1 16:18 編輯

新增一個指標,命名Volume2


vars: con1(false);

if close-open>0 then
      con1=true
else
      con1=false;



if BarType >= 2 and BarType < 5 then begin

      if con1 then begin                           
                Plot1( Volume, "Volume_UP" );
      end else begin
                Plot2( Volume, "Volume_DOWN" );
      end;
end else begin                        
      if con1 then begin                           
                Plot1( ticks, "Volume_UP" );
      end else begin
                Plot2( ticks, "Volume_DOWN" );
      end;
end;

Plot3( 5000, "5000" );

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
叫出volume2指標,設定指標樣式,Volume_UP設紅色,Volume_Down設綠色,兩個類型都要"選柱狀圖",調整一下粗細,就搞定了

joiner312 發表於 15-10-1 19:35

新手再請教

1分k 開盤價 高低畫橫線到13:30分

以及 昨收盤價畫線到13:30分該如何寫   

~~~~~~~~~~~~~~~~~~~~~
5分k macd長頭紅色 縮頭灰色   長腳綠色縮腳粉紅色 該如何寫


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

我願意付費Bljo511可以再幫幫我寫些想法嗎

joiner312@yahoo.com.tw

joiner312 發表於 15-10-1 19:35

blj0511 發表於 15-10-1 16:16 static/image/common/back.gif
新增一個指標,命名Volume2




新手再請教

1分k 開盤價 高低畫橫線到13:30分

以及 昨收盤價畫線到13:30分該如何寫   

~~~~~~~~~~~~~~~~~~~~~
5分k macd長頭紅色 縮頭灰色   長腳綠色縮腳粉紅色 該如何寫


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

我願意付費Bljo511可以再幫幫我寫些想法嗎

joiner312@yahoo.com.tw

blj0511 發表於 15-10-1 22:48

本帖最後由 blj0511 於 15-10-1 23:30 編輯

1分k 開盤價 高低畫橫線到13:30分 --->何謂高低橫線?

若是今日開盤價畫橫線到1330
昨日收盤價畫到1330寫法如下,可寫在訊號裡

if date>date then begin
value3=TL_new(date,845,open,date,1330,open);
value4=TL_new(date,845,close,date,1330,close);
tl_setcolor(value3,blue);
tl_setcolor(value4,yellow);
end;

您再修改成您需要的即可

--------------------------------------------------------
至於macd, multicharts裡有內建macd指標,看看是不是你需要的,只是設定顏色而已

joiner312 發表於 15-10-2 08:32

新手再請教

macd長頭紅色 縮頭灰色   長腳綠色縮腳灰色 該如何變色https://www.google.com.tw/search?q=macd&source=lnms&tbm=isch&sa=X&ved=0CAgQ_AUoAWoVChMIiPHI88OiyAIVAhqUCh27IA7J&biw=1858&bih=960#imgrc=OLowH8XQDWPBFM%3A

joiner312 發表於 15-10-2 08:33

新手再請教

macd長頭紅色 縮頭灰色   長腳綠色縮腳灰色 該如何變色

blj0511 發表於 15-10-2 11:19

新增一個指標,命名MACD2

inputs: FastLength( 12 ), SlowLength( 26 ), MACDLength( 9 ) ;
variables: var0( 0 ), var1( 0 ), var2( 0 ) ;

var0 = MACD( Close, FastLength, SlowLength ) ;
var1 = XAverage( var0, MACDLength ) ;
var2 = var0 - var1 ;

Plot1( var0, "MACD" ) ;
Plot2( var1, "MACDAvg" ) ;
//Plot3( var2, "MACDDiff" ) ;
Plot4( 0, "ZeroLine" ) ;

condition1 = var2 crosses over 0 ;   
if condition1 then
        Alert( "Bullish alert" )
else
begin
condition1 = var2 crosses under 0 ;
if condition1 then
        Alert( "Bearish alert" ) ;
end;


if var2>0 then begin;
        if var2<var2 then begin;
                Plot7( var2, "Short" ) ;
        end else begin;
                Plot5( var2, "MACDDiff>0" ) ;
        end;
end;

if var2<0 then begin;
        if var2>var2 then begin;
                Plot7( var2, "Short" ) ;
        end else begin;
                Plot6( var2, "MACDDiff<0" ) ;
        end;
end;



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
叫出MACD2指標,設定指標樣式,MACD>0設紅色,MACD<0設綠色,Short設灰色,三個類型都要"選柱狀圖",調整一下粗細,看看是不是你要ㄉ~
頁: [1]
查看完整版本: 請問高手