中文字幕av无码不卡免费_蜜臀AV无码精品人妻色欲_亚洲成AV人片在线观看无码不卡_无码专区天天躁天天躁在线

您現在的位置:程序化交易>> 期貨公式>> (MC)multicharts>> MC知識>>正文內容

代碼問題,求教 [MC]

  • MC用戶求助:

    只是想實現 止損后,反手交易,并且手數翻倍。

    所以手數應該是1 2 4 8 16 32 這樣倍增。

    但現在總是出現跳躍,不知道是為什么。

    不用一定在哪個品種上測試,小品種上都可以測試,螺紋,大豆,豆粕等等都行。

    例如下圖1 2 4 然后沒有8 直接跳到了16 。

    32后 直接跳到了128

    是和模式(bar內?)有關?還是代碼?

    ?

    全部代碼如下:

    inputs:

    ? ? ? ? ?Zhiyingx( 9999) , ? ? ?

    Zhiying( 9999) ,

    Zhisun( 5 ) ;

    ? ? ? ?

    ?

    variables:

    ? ?nn(4) ,

    ? ? ? ? ?ww(3) , ? ? ??

    ?

    var0( 0 ), var1( 0 ), var2( 0 ),Length( 20 ),Zhiyings( 20 ),TNUMSEQLOSS( 0 ),

    shoushua( 1 ), shoushu(1), yici(0)?

    ;

    ?

    yici=0;

    var0 = BollingerBand( Close, Length, 1 ) ;

    var1 = BollingerBand( Close , Length, -1 ) ;

    var2 = Average(C,Length);

    ?

    ?

    condition3 = TIME>900 and TIME<2300;

    ?

    condition1 = c[1]>o[1] and c[1]>Average(c[1],26) and condition3 ;;

    ?

    condition2 = c[1]<o[1] and c[1]<Average(c[1],26) and condition3 ;;

    ?

    ?

    if TNUMSEQLOSS<ww then begin

    Zhiyings=Zhiying;

    end

    Else begin

    ? ? ? ?Zhiyings=Zhiyingx;

    end;

    ?

    if TNUMSEQLOSS<nn then begin

    shoushua=shoushu;

    end

    Else begin

    ? ? ? ? shoushu=0.5;

    ? ? ? ?end;

    ?

    ?

    ?

    ?

    condition4 = CurrentBar > 1 and H>Zhisun+avgentryprice and marketposition=-1 and condition3 ;

    ?

    condition5 = CurrentBar > 1 and l<avgentryprice-Zhisun and marketposition=1 and condition3 ;

    ?

    ?

    condition6 = CurrentBar > 1 and l<avgentryprice-Zhiyings and marketposition=-1 and condition3 ;

    ?

    condition7 = CurrentBar > 1 and h>avgentryprice+Zhiyings and marketposition=1 and condition3 ;

    ?

    ?

    if (condition1 or yici[1]=1) ?and marketposition=0 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Buy ( "kai1" ) 1 Contract next bar at Open stop ;

    ?

    end;

    ?

    if (condition2 or yici[1]=-1) and marketposition=0 ?then begin

    ?

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Sell Short ( "kai2" ) 1 Contract ?next bar at Open stop ;

    ?

    end;

    ?

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    ?

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    end;

    ?

    ?

    ?

    if condition5 and condition4=False then begin

    ?

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    ?

    end;

    ?

    ?

    if condition6 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    buytocover ?( "ying1" ) next bar at avgentryprice-Zhiyings ?stop ;

    shoushu=1;

    TNUMSEQLOSS=0;

    yici=-1;

    end;

    ?

    if condition7 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    sell( "ying2" ) next bar at avgentryprice+Zhiyings stop ;

    shoushu=1;

    ? ? ? ?TNUMSEQLOSS=0;

    ? ? ? ?yici=1;

    end;

    ?

    ?

  • MC回復討論一:

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    end;

    if condition5 and condition4=False then begin

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    end;

    以上代碼是您累加變量TNUMSEQLOSS的地方,也是問題的所在,之所以出現”跳躍“是因為重復累加,也就是條件連續滿足導致連續累加;因為您使用的是條件單,而條件單不一定委托出去就會成交,但是您在條件成立時肯定會累加變量TNUMSEQLOSS,所以導致兩者的不一致;解決方法是,確定條件單成交之后再累加變量TNUMSEQLOSS

    ?

    ?

  • MC回復討論二:

    判斷是否成交的方法有很多:

    第一、在沒有加倉的情況下,通過當根bar的marketposition與前一根bar的marketposition的信息對比進行判斷,但是由于marketposition沒有回溯的功能,但您需要先將marketposition的值賦值給新建的變量mp,然后通過判斷mp[1]<>mp

    第二、在有加倉的情況下,您還需要考慮關鍵字currentcontracts等持倉部位信息的變化,以此來判斷。

    第三、策略屬性中有重新計算的設置,可以勾選“委托單成交”,這個用來判斷委托單成交有點復雜,不建議使用。

    ?

  • MC回復討論三:

    inputs:

    ? ? ? ? ?Zhiyingx( 9999) , ? ? ?

    Zhiying( 9999) ,

    Zhisun( 5 ) ;

    ? ? ? ?

    ?

    variables:

    ? ?nn(4) ,

    ? ? ? ? ?ww(3) , ? ? ??

    ?

    var0( 0 ), var1( 0 ), var2( 0 ),Length( 20 ),Zhiyings( 20 ),TNUMSEQLOSS( 0 ),

    shoushua( 1 ), shoushu(1), yici(0), mp(0);;

    ?

    yici=0;

    var0 = BollingerBand( Close, Length, 1 ) ;

    var1 = BollingerBand( Close , Length, -1 ) ;

    var2 = Average(C,Length);

    ?

    ?

    condition3 = TIME>900 and TIME<2300;

    ?

    condition1 = c[1]>o[1] and c[1]>Average(c[1],26) and condition3 ;;

    ?

    condition2 = c[1]<o[1] and c[1]<Average(c[1],26) and condition3 ;;

    ?

    ?

    if TNUMSEQLOSS<ww then begin

    Zhiyings=Zhiying;

    end

    Else begin

    ? ? ? ?Zhiyings=Zhiyingx;

    end;

    ?

    if TNUMSEQLOSS<nn then begin

    shoushua=shoushu;

    end

    Else begin

    ? ? ? ? shoushu=0.5;

    ? ? ? ?end;

    ?

    ?

    mp=marketposition;

    ?

    condition4 = CurrentBar > 1 and H>Zhisun+avgentryprice and marketposition=-1 and condition3 ?and ?mp[1]<>mp;

    ?

    condition5 = CurrentBar > 1 and l<avgentryprice-Zhisun and marketposition=1 and condition3 and ?mp[1]<>mp;

    ?

    ?

    condition6 = CurrentBar > 1 and l<avgentryprice-Zhiyings and marketposition=-1 and condition3 ;

    ?

    condition7 = CurrentBar > 1 and h>avgentryprice+Zhiyings and marketposition=1 and condition3 ;

    ?

    ?

    if (condition1 or yici[1]=1) ?and marketposition=0 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Buy ( "kai1" ) 1 Contract next bar at Open stop ;

    ?

    end;

    ?

    if (condition2 or yici[1]=-1) and marketposition=0 ?then begin

    ?

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Sell Short ( "kai2" ) 1 Contract ?next bar at Open stop ;

    ?

    end;

    ?

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    ?

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    ?

    ?

    end;

    ?

    ?

    ?

    if condition5 and condition4=False then begin

    ?

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    ?

    end;

    ?

    ?

    if condition6 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    buytocover ?( "ying1" ) next bar at avgentryprice-Zhiyings ?stop ;

    shoushu=1;

    TNUMSEQLOSS=0;

    yici=-1;

    end;

    ?

    if condition7 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    sell( "ying2" ) next bar at avgentryprice+Zhiyings stop ;

    shoushu=1;

    ? ? ? ?TNUMSEQLOSS=0;

    ? ? ? ?yici=1;

    end;

    ?

    ?

    ?

    我按照您說的改了,這樣基本交易1,2次就不交易了,這是怎么回事?

    ?

  • MC回復討論四:

    inputs:

    ? ? ? ? ?Zhiyingx( 9999) , ? ? ?

    Zhiying( 9999) ,

    Zhisun( 5 ) ;

    ? ? ? ?

    ?

    variables:

    ? ?nn(4) ,

    ? ? ? ? ?ww(3) , ? ? ??

    ?

    var0( 0 ), var1( 0 ), var2( 0 ),Length( 20 ),Zhiyings( 20 ),TNUMSEQLOSS( 0 ),

    shoushua( 1 ), shoushu(1), yici(0), mp(0);;

    ?

    yici=0;

    var0 = BollingerBand( Close, Length, 1 ) ;

    var1 = BollingerBand( Close , Length, -1 ) ;

    var2 = Average(C,Length);

    ?

    ?

    condition3 = TIME>900 and TIME<2300;

    ?

    condition1 = c[1]>o[1] and c[1]>Average(c[1],26) and condition3 ;;

    ?

    condition2 = c[1]<o[1] and c[1]<Average(c[1],26) and condition3 ;;

    ?

    ?

    if TNUMSEQLOSS<ww then begin

    Zhiyings=Zhiying;

    end

    Else begin

    ? ? ? ?Zhiyings=Zhiyingx;

    end;

    ?

    if TNUMSEQLOSS<nn then begin

    shoushua=shoushu;

    end

    Else begin

    ? ? ? ? shoushu=0.5;

    ? ? ? ?end;

    ?

    ?

    mp=marketposition;

    ?

    condition4 = CurrentBar > 1 and H>Zhisun+avgentryprice and marketposition=-1 and condition3 ?and ?mp[1]<>mp;

    ?

    condition5 = CurrentBar > 1 and l<avgentryprice-Zhisun and marketposition=1 and condition3 and ?mp[1]<>mp;

    ?

    ?

    condition6 = CurrentBar > 1 and l<avgentryprice-Zhiyings and marketposition=-1 and condition3 ;

    ?

    condition7 = CurrentBar > 1 and h>avgentryprice+Zhiyings and marketposition=1 and condition3 ;

    ?

    ?

    if (condition1 or yici[1]=1) ?and marketposition=0 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Buy ( "kai1" ) 1 Contract next bar at Open stop ;

    ?

    end;

    ?

    if (condition2 or yici[1]=-1) and marketposition=0 ?then begin

    ?

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    Sell Short ( "kai2" ) 1 Contract ?next bar at Open stop ;

    ?

    end;

    ?

    if condition4 ?and condition5=False then begin

    ? ? ? ? ? TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? print(date," ",time," buy ?TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," buy ?shoushu: ",shoushu);

    ?

    buy ?( "kui1" ) ?shoushu Contracts ? ? ? next bar at Zhisun+avgentryprice ?stop ;

    ?

    ?

    end;

    ?

    ?

    ?

    if condition5 and condition4=False then begin

    ?

    ? ? ? ? ? ?TNUMSEQLOSS=TNUMSEQLOSS+1;

    ? ? ? ? ? ?print(date," ",time," sellshort TNUMSEQLOSS: ",TNUMSEQLOSS);

    ? ? ? ? ? ?shoushu=Power(2,TNUMSEQLOSS);?

    ? ? ? ? ? ?print(date," ",time," sellshort shoushu: ",shoushu);

    sellshort( "kui2" ) ?shoushu Contracts ? ?next bar at avgentryprice-Zhisun ?stop ;

    ?

    end;

    ?

    ?

    if condition6 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    buytocover ?( "ying1" ) next bar at avgentryprice-Zhiyings ?stop ;

    shoushu=1;

    TNUMSEQLOSS=0;

    yici=-1;

    end;

    ?

    if condition7 then begin

    ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

    sell( "ying2" ) next bar at avgentryprice+Zhiyings stop ;

    shoushu=1;

    ? ? ? ?TNUMSEQLOSS=0;

    ? ? ? ?yici=1;

    end;

    ?

    ?

    ?

    我按照您說的改了,這樣基本交易1,2次就不交易了,這是怎么回事?

 

有思路,想編寫各種指標公式,程序化交易模型,選股公式,預警公式的朋友

可聯系技術人員 QQ: 511411198  點擊這里給我發消息進行 有償 編寫!不貴!點擊查看價格!


【字體: 】【打印文章】【查看評論

相關文章

    沒有相關內容
中文字幕av无码不卡免费_蜜臀AV无码精品人妻色欲_亚洲成AV人片在线观看无码不卡_无码专区天天躁天天躁在线

国产精品婷婷| 久久婷婷一区| 欧美一区不卡| 欧美日韩理论| 在线午夜精品| 国产精品国产三级欧美二区 | 久久xxxx精品视频| 欧美1区2区视频| 在线播放一区| 欧美va天堂在线| 国产日本精品| 好吊视频一区二区三区四区| 国产亚洲欧美另类一区二区三区| 欧美国产综合| 亚洲一区二区精品在线观看| 欧美视频日韩| 久久中文在线| 国产精品日韩精品欧美精品| 狠狠综合久久av一区二区老牛| 免费看亚洲片| 国产一区二区三区免费不卡| 激情综合电影网| 欧美日韩亚洲在线| 久久国产欧美| 亚洲一区二区精品在线| 亚洲黄页一区| 国产精品第十页| 久久久久久国产精品一区| 在线观看一区| 精品不卡视频| 国产一区免费视频| 欧美国产免费| 欧美激情一区二区三区在线视频| 国产精品日韩一区二区| 亚洲精选91| 亚洲国产激情| 亚洲免费播放| 国产日韩亚洲| 国产三区二区一区久久| aⅴ色国产欧美| 日韩一级精品| 国产精品夜夜夜| 国产亚洲一区在线| 国产手机视频一区二区| 夜夜爽av福利精品导航 | 国产一区日韩欧美| 欧美日韩爆操| 国产综合久久| 国内精品美女在线观看| 精品动漫一区| 亚洲精品在线视频观看| 一区二区三区福利| 午夜在线精品| 欧美日韩在线高清| 国内久久精品| 一区二区三区导航| 亚洲欧美视频一区二区三区| 久久久久久一区| 欧美午夜免费影院| 在线观看一区视频| 亚洲一区二区三区免费观看| 免费日韩精品中文字幕视频在线| 久久婷婷国产综合尤物精品| 欧美日韩日本网| 亚洲欧洲精品一区二区| 亚洲一区免费看| 欧美精品一区三区在线观看| 亚洲无线一线二线三线区别av| 亚洲经典三级| 狂野欧美一区| 亚洲专区一区| 亚洲精品日韩精品| 国产亚洲综合精品| 欧美黄在线观看| 在线欧美一区| 久久亚洲色图| 亚洲人体大胆视频| 久久综合中文| 亚洲少妇在线| 国产精品激情电影| 欧美亚洲三级| 亚洲精品资源| 国产精品激情| 女人香蕉久久**毛片精品| 亚洲精品久久久久久一区二区| 欧美专区在线| 国产日韩欧美一区二区| 国产精品国色综合久久| 性刺激综合网| 一区二区三区四区五区精品| 韩国一区二区三区在线观看| 性欧美精品高清| 一本久久综合| 亚洲国产mv| 欧美视频日韩| 久久中文精品| 免费在线观看成人av| 伊人蜜桃色噜噜激情综合| 午夜日韩电影| 你懂的亚洲视频| 蜜桃久久av| 久久精品欧美| 蜜桃久久精品乱码一区二区| 中文亚洲免费| 国产视频一区免费看| 亚洲区第一页| 日韩视频一区| 一本色道久久综合亚洲精品高清| 国产精品国产亚洲精品看不卡15| 老司机久久99久久精品播放免费| 欧美亚洲免费在线| 欧美综合二区| 久久夜色精品| 欧美+亚洲+精品+三区| 奶水喷射视频一区| 香蕉久久夜色精品| 欧美亚洲免费高清在线观看| 亚洲免费网站| 久久视频一区| 国产一区二区三区四区老人| 韩国欧美一区| 一本色道久久综合| 亚洲一区区二区| 久久精品一区二区国产| 欧美精品三级| 亚洲高清在线| 99精品视频免费| 亚洲综合国产| 欧美在线日韩| 亚洲国产电影| 亚洲一区国产一区| 欧美国产专区| 夜夜嗨av一区二区三区网站四季av| 国产精品视区| 午夜天堂精品久久久久| 含羞草久久爱69一区| 99视频一区| 久久久久国产精品一区二区| 国产一区久久| 亚洲一区二区三区午夜| 欧美一区2区三区4区公司二百 | 国产亚洲毛片在线| 久久久久久久久久久一区| 欧美久久久久久久| 99精品欧美| 老司机午夜精品视频在线观看| 国产精品二区在线| 国产精品久久久久久久免费软件| 欧美亚洲免费| 亚洲午夜久久久久久尤物| 夜夜爽99久久国产综合精品女不卡| 亚洲一区免费看| 激情一区二区三区| 美女亚洲精品| 99精品99| 亚洲小说欧美另类社区| 美女精品在线观看| 99热这里只有精品8| 欧美日韩国产不卡在线看| 国产一区二区三区久久| 欧美精品色网| 美女精品国产| 国产乱人伦精品一区二区| 国内精品久久久久久久影视麻豆| 国产欧美日本| 最新亚洲一区| 亚洲午夜久久久久久尤物| 久久亚洲精品伦理| 性一交一乱一区二区洋洋av| 亚洲精美视频| 激情综合在线| 好吊色欧美一区二区三区四区| 久久精品国产综合精品| 国产精品免费一区二区三区在线观看 | 在线免费高清一区二区三区| 久久精品国语| 性欧美精品高清| 国产欧美一区二区色老头| 在线观看欧美亚洲| 精品动漫3d一区二区三区免费| 可以看av的网站久久看| 国产伦精品一区二区三区四区免费| 尤物在线精品| 尤物精品在线| 伊人精品成人久久综合软件| 欧美日韩一区二区视频在线观看| 久久青青草综合| 午夜亚洲福利在线老司机| 国产一区二区高清| 国产一区二区三区奇米久涩| 夜夜精品视频| 国产日韩欧美在线播放不卡| 国产偷国产偷亚洲高清97cao| 亚洲人久久久| 一区二区三区视频在线播放| 一本一道久久综合狠狠老精东影业 | 禁久久精品乱码| 亚洲成人在线| 国产欧美丝祙| 亚洲一区二区三区色| 噜噜爱69成人精品| 欧美日韩久久| 一区二区亚洲精品| 亚洲精品国产精品国自产观看| 亚洲国产欧美日韩| 亚洲一区二区三区高清| 女人天堂亚洲aⅴ在线观看| 欧美日韩三级电影在线| 亚洲欧洲在线一区| 香蕉久久夜色| 黑人一区二区三区四区五区| 一道本一区二区| 久久av在线| 亚洲视频综合| 亚洲欧美久久久| 欧美大片专区| 夜夜嗨av一区二区三区网站四季av| 国产一区二区久久久| 欧美69wwwcom| 亚洲精品美女91| 亚洲一区二区三区四区五区午夜| 欧美韩日精品| 国产精品免费看| 国产在线精品一区二区中文| 国产日韩一区二区三区在线| 欧美久久久久| 国产欧美亚洲日本| 国产精品国产三级欧美二区| 亚洲一区二区三区四区五区午夜| 欧美色图麻豆| 亚洲欧美日韩专区| 亚洲国产三级| 欧美日韩无遮挡| 亚洲一区中文| 一区二区三区四区国产| 国产一区二区三区四区老人| 麻豆精品视频| 国产精品美女黄网| 亚洲黄色在线| 狠狠噜噜久久| 欧美日韩精品| 看欧美日韩国产| 欧美亚洲免费| 亚洲久久在线| 黄色一区三区| 午夜久久久久| 欧美va天堂| 免费永久网站黄欧美| 国产日韩高清一区二区三区在线| 亚洲成人资源| 在线成人www免费观看视频| 欧美日韩国产成人精品| 欧美aa国产视频| 欧美69视频| 欧美xxx在线观看| 久久综合九色综合久99| 久久精品综合| 欧美在线高清| 欧美精品自拍| 国内成人在线| 亚洲国产mv| 亚洲黄色影院| 日韩亚洲欧美精品| 日韩视频在线播放| 亚洲国产精品久久久久久女王 | 国产精品美女久久久| 伊人婷婷久久| 在线日韩视频| 一本色道88久久加勒比精品| 在线观看成人av电影| 伊人影院久久| 99综合在线| 国产精品一区二区在线观看 | 久久综合中文| 欧美日本亚洲韩国国产| 欧美日韩一区二区三区免费| 欧美另类专区| 亚洲国产1区| 一区二区精品在线| 香蕉精品999视频一区二区| 久久国产日韩欧美| 欧美三级视频| 国产欧美日韩在线播放| 久久蜜桃资源一区二区老牛| 欧美视频在线观看| 夜夜爽www精品| 快she精品国产999| 亚洲成色精品| 国产精品三区www17con| 牛牛国产精品| 亚洲国产99| 久久精品国语| 亚洲国产影院| 久热综合在线亚洲精品| 国内精品嫩模av私拍在线观看| 亚洲国产高清一区二区三区| 亚洲一区二区在线看| 欧美日韩国产综合在线| 国产精品久久777777毛茸茸| 久久久国产精品一区二区中文 | 久久一区视频| 日韩一级免费| 久久最新视频| 国产欧美一区二区三区另类精品 | 黄色成人在线网址| 亚洲一区二区高清视频| 国产综合欧美在线看| 亚洲影院在线| 亚洲日本欧美| 国内久久精品| 蜜桃视频一区| 国产亚洲精品久久久久婷婷瑜伽| 欧美精品观看| 美女精品在线| 中文在线一区| 影音先锋中文字幕一区| 久久资源av| 亚洲综合日本| 亚洲精品影院在线观看| 国产一区二区无遮挡| 久久精品日韩欧美| 国产免费成人| 国产亚洲精品久久飘花 | 亚洲欧洲日本一区二区三区| 欧美欧美全黄| 欧美一区免费| 久久久久成人精品免费播放动漫| 亚洲国产精品第一区二区三区| 欧美高清视频一区二区三区在线观看| 一区二区精品在线观看| 亚洲高清资源| 亚洲福利电影| 亚洲国产婷婷| 日韩视频久久| 99亚洲一区二区| 日韩亚洲欧美精品| 亚洲看片一区| 在线视频亚洲| 国产精品综合色区在线观看| 一区二区国产在线观看| 在线成人www免费观看视频| 亚洲午夜激情| 亚洲精品一区二区三| 日韩亚洲视频| 国产模特精品视频久久久久| 国产精品主播| 久久久久免费| 欧美国产高潮xxxx1819| 欧美精品国产一区二区| 国产在线不卡| 99re热精品| 性色一区二区| 欧美日韩p片| 精品二区久久| 亚洲一区二区三区高清不卡| 亚洲综合精品| 可以免费看不卡的av网站| 欧美久久久久久久| 亚洲国产一区二区精品专区| 一本色道久久综合亚洲精品高清| 在线天堂一区av电影| 久久久久一区二区| 欧美午夜在线| 在线综合亚洲| 亚洲欧美综合一区| 亚洲精品四区| 美女尤物久久精品| 国产一区久久| 国产精品亚洲一区| 欧美日韩国产三区| 国产精品推荐精品| 欧美日韩免费观看一区=区三区| 最新国产拍偷乱拍精品 | 久久精品欧洲| 亚洲一级黄色| 久久av一区二区三区| 亚洲视频碰碰| 午夜在线播放视频欧美| 国产精品地址| 媚黑女一区二区| 亚洲欧洲三级| 欧美精品观看| 国产乱码精品| 亚洲黄色大片| 欧美日韩国内| 欧美亚洲视频| 亚洲免费观看| 亚洲视频中文| 欧美1区3d| 免费视频一区| 中文精品视频| 亚洲国产网站| 国产精品99免费看| 快she精品国产999| 国产精品久久亚洲7777| 激情亚洲网站| 国产精品二区在线| 久久综合婷婷| 久久一区亚洲| 久久蜜桃精品|