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

您現(xiàn)在的位置:程序化交易>> 期貨公式>> (MC)multicharts>> MC知識(shí)>>正文內(nèi)容

代碼問題,求教 [MC]

  • MC用戶求助:

    只是想實(shí)現(xiàn) 止損后,反手交易,并且手?jǐn)?shù)翻倍。

    所以手?jǐn)?shù)應(yīng)該是1 2 4 8 16 32 這樣倍增。

    但現(xiàn)在總是出現(xiàn)跳躍,不知道是為什么。

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

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

    32后 直接跳到了128

    是和模式(bar內(nèi)?)有關(guān)?還是代碼?

    ?

    全部代碼如下:

    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回復(fù)討論一:

    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的地方,也是問題的所在,之所以出現(xiàn)”跳躍“是因?yàn)橹貜?fù)累加,也就是條件連續(xù)滿足導(dǎo)致連續(xù)累加;因?yàn)槟褂玫氖菞l件單,而條件單不一定委托出去就會(huì)成交,但是您在條件成立時(shí)肯定會(huì)累加變量TNUMSEQLOSS,所以導(dǎo)致兩者的不一致;解決方法是,確定條件單成交之后再累加變量TNUMSEQLOSS

    ?

    ?

  • MC回復(fù)討論二:

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

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

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

    第三、策略屬性中有重新計(jì)算的設(shè)置,可以勾選“委托單成交”,這個(gè)用來判斷委托單成交有點(diǎn)復(fù)雜,不建議使用。

    ?

  • MC回復(fù)討論三:

    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回復(fù)討論四:

    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次就不交易了,這是怎么回事?

 

有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友

可聯(lián)系技術(shù)人員 QQ: 511411198  點(diǎn)擊這里給我發(fā)消息進(jìn)行 有償 編寫!不貴!點(diǎn)擊查看價(jià)格!


【字體: 】【打印文章】【查看評(píng)論

相關(guān)文章

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

麻豆9191精品国产| 亚洲精品极品| 午夜久久黄色| 欧美色123| 亚洲高清在线播放| 一区二区日韩免费看| 国产一区二区高清不卡| 久久久久久久高潮| 亚洲第一精品影视| 久久一区二区三区四区五区 | 久久综合久久综合这里只有精品| 欧美日韩国产精品一区二区亚洲| 亚洲麻豆一区| 欧美日韩综合另类| 久久久成人网| 国产精品一区毛片| 欧美日韩三区| 国产欧美成人| 久久看片网站| 欧美一级专区| 国产专区一区| 久久精品官网| 在线成人国产| 欧美日韩精品免费看| 国产精品三区www17con| 一区久久精品| 国内精品国语自产拍在线观看| 午夜在线播放视频欧美| 影音先锋亚洲精品| 欧美色一级片| 亚洲欧美综合一区| 久久久综合网| 久久成人免费| 欧美日本一区二区视频在线观看| 国产精品日韩一区二区| 欧美在线视屏| 免费看的黄色欧美网站| 亚洲一区二区在线看| 可以看av的网站久久看| 国产日韩欧美二区| 99re国产精品| 亚洲区一区二| 欧美淫片网站| 亚洲一区二区网站| 亚洲欧洲日本一区二区三区| 国产精品初高中精品久久| 亚洲天堂成人| 老色鬼久久亚洲一区二区| 免费看的黄色欧美网站| 亚洲在线电影| 看欧美日韩国产| 午夜精品久久99蜜桃的功能介绍| 蜜桃久久av| 久久国产精品免费一区| 久久经典综合| 欧美日韩日本网| 亚洲天堂久久| 日韩午夜在线| 亚洲一区二区在线看| 亚洲图片在线| 美女精品在线| 久久中文欧美| 亚洲欧洲一级| 日韩视频一区| 亚洲国产片色| 亚洲综合丁香| 欧美日本亚洲| 亚洲人人精品| 久久久久欧美精品| 亚洲黄色精品| 久久综合五月| 亚洲精品乱码久久久久久蜜桃麻豆 | 99综合视频| 中文亚洲免费| 亚洲精品韩国| 99热这里只有成人精品国产| 亚洲一区二区三区高清| 久久综合图片| 亚洲一二三区精品| av不卡免费看| 亚洲影音一区| 日韩亚洲一区在线播放| 性久久久久久| 亚洲福利电影| 久久性天堂网| 亚洲高清在线| 午夜国产精品视频| 国产毛片一区| 在线精品亚洲| 欧美成人tv| 国产亚洲综合精品| 在线观看视频免费一区二区三区| 久久激情中文| 国产日韩精品视频一区二区三区| 久久久久91| 免费日韩av| 亚洲一级影院| 国产一区91| 国产综合欧美在线看| 免费视频一区二区三区在线观看| 国产尤物精品| 欧美日韩精品一区| 国产一区二区三区四区三区四| 伊人久久大香线蕉av超碰演员| 国产精品久久久一区二区三区 | 日韩视频在线观看国产| 欧美在线播放| 免播放器亚洲| 亚洲一区3d动漫同人无遮挡| 亚洲性感美女99在线| 久久精品人人做人人爽电影蜜月| 亚洲精品在线二区| 国产在线欧美日韩| 欧美激情第二页| 久久久国产精品一区二区中文| 在线亚洲自拍| 国产欧美一级| 国产日韩1区| 亚洲神马久久| 99热精品在线| 亚洲激情欧美| 欧美aa国产视频| 久久久久久色| 欧美在线三级| 国产精品一区二区三区四区五区| 亚洲巨乳在线| 99热这里只有成人精品国产| 一本一本久久a久久精品综合妖精| 一区在线播放| 亚洲高清资源综合久久精品| 亚洲国产精品一区| 国产欧美日韩综合一区在线观看| 一区二区三区欧美成人| 中文有码久久| 媚黑女一区二区| 欧美日韩在线播放一区二区| 亚洲小说区图片区| 一本色道久久99精品综合| 日韩视频三区| 性欧美videos另类喷潮| 91久久视频| 欧美成人综合一区| 老牛嫩草一区二区三区日本 | 一区二区三区福利| 欧美私人啪啪vps| 99精品99| 亚洲一区3d动漫同人无遮挡| 久久一区欧美| 伊人久久婷婷| 亚洲在线不卡| 欧美日韩喷水| 国产欧美日本在线| 玖玖国产精品视频| 亚洲片区在线| 亚洲综合首页| 国产一区欧美| 亚洲激情一区二区| 亚洲欧美清纯在线制服| 国产一级精品aaaaa看| 国产欧美日韩在线播放| 一区二区三区国产盗摄 | 亚洲精华国产欧美| 亚洲国产精品一区制服丝袜 | 99国产精品久久久久久久| 国产日韩欧美一区| 你懂的国产精品永久在线| 亚洲午夜精品一区二区| 免费亚洲网站| 99精品视频免费全部在线| 久久一日本道色综合久久| 亚洲国产专区校园欧美| 狼狼综合久久久久综合网| 亚洲精品精选| 欧美日韩第一区| 国产精品婷婷| 精品福利电影| 国产日韩欧美三级| 久久在线精品| 一本久道久久久| 欧美日韩高清免费| 久久一区精品| 久久aⅴ国产紧身牛仔裤| 亚洲视频二区| 在线播放日韩| 一区在线观看| 黄色综合网站| 午夜亚洲福利| 久久久久中文| 久久婷婷亚洲| 麻豆av一区二区三区久久| 国产一级精品aaaaa看| 99精品国产高清一区二区| 亚洲激情二区| 一本久道久久综合婷婷鲸鱼| 亚洲视频观看| 一区二区视频在线观看| 伊人久久亚洲影院| 亚洲精品日本| 一区二区三区四区五区在线| 夜夜精品视频| 国产精品视频免费观看| 国产伦精品一区二区| 亚洲欧美久久久| 午夜综合激情| 欧美/亚洲一区| 黑丝一区二区| 在线一区视频| 久久综合导航| 黄色欧美日韩| 一本一本久久a久久精品综合妖精| 99riav国产精品| 久久久水蜜桃| 极品中文字幕一区| 亚洲作爱视频| 欧美~级网站不卡| 亚洲国产国产亚洲一二三| 国产亚洲在线| 欧美在线影院| 亚洲日本无吗高清不卡| 国产精品久久久对白| 久久大香伊蕉在人线观看热2| 欧美在线视频二区| 韩国一区二区三区在线观看| 亚洲欧洲精品一区二区| 性色一区二区三区| 伊人成年综合电影网| 国产欧美日韩在线播放 | 妖精视频成人观看www| 一区二区三区四区五区视频| 久久精品1区| 亚洲欧洲一区二区天堂久久| 亚洲黄色高清| 欧美激情视频一区二区三区在线播放 | 老牛嫩草一区二区三区日本| 蜜桃伊人久久| 欧美日韩亚洲一区| 欧美三级网页| 国产欧美日韩综合一区在线观看| 亚洲精品麻豆| 国产精品v欧美精品v日韩精品| 久久av一区| 伊人久久大香线蕉综合热线| 亚洲欧美日本日韩| 亚洲午夜电影| 久久精品男女| 一本色道久久综合| 激情久久一区| 韩日成人在线| 欧美日韩成人| 久久久久久自在自线| 国产欧美日韩一区二区三区在线 | 黄色成人在线网址| 噜噜噜噜噜久久久久久91| 91久久午夜| 精品电影一区| 国产一区二区三区四区老人| 久久激情综合| 久久国产精品一区二区三区| 欧美日本不卡高清| 国产精品一级久久久| 黄色工厂这里只有精品| 久久精品三级| 亚洲一区国产| 亚洲日本国产| 亚洲手机在线| 亚洲天堂男人| 在线看片成人| 亚洲国产精品毛片| 欧美 日韩 国产 一区| 另类av一区二区| 香蕉久久夜色精品| 91久久黄色| 巨乳诱惑日韩免费av| 亚洲欧美日韩另类精品一区二区三区| 亚洲激情综合| 99精品国产在热久久| 亚洲精品黄色| 国产欧美午夜| 先锋亚洲精品| 麻豆9191精品国产| 久久久久久久久久久一区| 免费视频一区二区三区在线观看| 亚洲尤物在线| 欧美亚洲免费| 欧美在线首页| 亚洲女同同性videoxma| 午夜亚洲影视| 欧美成人国产| 亚洲午夜精品久久久久久app| 欧美日韩国产在线一区| 在线精品一区| 韩国一区二区三区美女美女秀| 欧美99久久| 午夜久久99| 久久激情婷婷| 亚洲三级影院| 国产亚洲毛片在线| 久久久精品动漫| 一区二区亚洲| 久久精品官网| 欧美日韩少妇| 99精品热视频只有精品10| 亚洲精选久久| 午夜在线一区二区| 久久久久国内| 极品少妇一区二区三区| 一本色道久久| 久久天堂精品| 91久久夜色精品国产九色| 久久久久久九九九九| 欧美另类专区| 一区二区三区欧美成人| 久久国产精品亚洲va麻豆| 国内精品久久久久久久果冻传媒 | 亚洲无线视频| 国产欧美一区二区三区国产幕精品| 久久一综合视频| 蜜桃av噜噜一区二区三区| 欧美日韩免费高清| 在线一区日本视频| 国产一区欧美| 久久性天堂网| 国产精品毛片在线| 激情五月***国产精品| 午夜亚洲福利在线老司机| 亚洲精品123区| 欧美96在线丨欧| 亚洲激情自拍| 欧美xxx在线观看| 国产一区二区三区久久久久久久久| 免费日韩一区二区| 亚洲精品中文字幕在线| 国产精品分类| 欧美日本一区二区视频在线观看 | 国产精品久久久久9999高清| 国产精品magnet| 久久精品道一区二区三区| 国产精品久久久久9999高清| 亚洲人体一区| 亚洲福利免费| 伊人久久av导航| 亚洲午夜精品福利| 国内精品**久久毛片app| 韩国一区二区三区在线观看 | 亚洲自拍另类| 亚洲一区二区三区色| 夜久久久久久| 国产欧美韩日| 久久大逼视频| 一本色道久久综合亚洲二区三区| 国产精品swag| 精品成人一区| 亚洲国产一区二区三区高清 | 樱桃成人精品视频在线播放| 狂野欧美性猛交xxxx巴西| 欧美在线综合| 午夜在线视频观看日韩17c| 久久国产福利| 欧美777四色影| 欧美日韩中文| 亚洲国产精品第一区二区| 一区二区av| 久久高清免费观看| 久久性天堂网| 国产精品v欧美精品v日韩精品| 红桃视频国产精品| 亚洲欧洲一区二区天堂久久| 一本色道精品久久一区二区三区| 性一交一乱一区二区洋洋av| 久久久久久久久久久久久久一区| 欧美久久一级| 99国产一区| 在线综合亚洲| 亚洲福利一区| 亚洲欧洲精品一区二区| 亚洲一级黄色| 99伊人成综合| 免费不卡亚洲欧美| 欧美日本韩国在线| 亚洲区欧美区| 久久av一区二区三区亚洲| 欧美日韩一区二区三区在线视频 | 亚洲国产精品视频一区| 国产欧美日韩综合一区在线播放 | 国产综合久久| 亚洲三级电影在线观看| 免费日韩精品中文字幕视频在线| 欧美在线1区| 黄色日韩精品| 欧美日韩在线高清| 一区二区精品在线观看| 免费亚洲一区二区| 国产一区二区三区无遮挡| 99热免费精品在线观看| 麻豆av一区二区三区| 国产精品国产精品| 国产一区二区你懂的| 国产在线精品二区| 久久久www| 国产精品区免费视频|