中文字幕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人片在线观看无码不卡_无码专区天天躁天天躁在线

国产一区二区你懂的| 一区二区三区视频在线播放| 麻豆精品网站| 国产伦精品一区二区三区照片91| 国产一区高清视频| 欧美日韩另类丝袜其他| 久久一区中文字幕| 久久久青草婷婷精品综合日韩 | 亚洲精品美女| 在线不卡视频| 亚洲人成人一区二区三区| 亚洲手机视频| 最新亚洲一区| 国产精品色网| 午夜国产精品视频| 久久婷婷激情| 黄色av日韩| 亚洲精品中文字幕在线| 国产欧美日韩亚洲一区二区三区| 国产精品乱看| 午夜精品免费| 亚洲开发第一视频在线播放| 国产亚洲一区在线| 午夜精品国产| 亚洲美女网站| 亚洲三级网站| 香蕉久久夜色精品国产| 欧美日韩在线不卡一区| 在线欧美福利| 亚洲一区国产一区| 国产一区二区三区四区三区四| 欧美三级免费| 亚洲一区二区三区欧美 | 亚洲精选在线| 久久久精品性| 亚洲欧洲视频| 老牛嫩草一区二区三区日本| 亚洲欧美日韩综合一区| 欧美日韩国产在线一区| 国产视频一区免费看| 欧美不卡在线| 国产精品一卡| 黑人一区二区三区四区五区| 亚洲欧美日韩视频二区| 狠狠噜噜久久| 久久九九99| 国产精品日韩一区二区三区| 欧美精品一区二区三区在线看午夜| 黑人巨大精品欧美一区二区小视频| 在线综合视频| 国产自产在线视频一区| 久久国产精品毛片| 国产视频久久| 一区二区三区三区在线| 在线日本成人| 毛片一区二区| 欧美午夜精品| 欧美激情亚洲| 欧美日韩精品一区| 久久国产一区| 美女久久一区| 国产伦精品一区二区三区视频黑人| 国产精品一级久久久| 一本久道久久久| 国内自拍一区| 国内一区二区三区在线视频| 欧美精品三级| 欧美日本国产| 午夜电影亚洲| 欧美一区成人| 久久亚洲一区二区| 国产精品久久久久毛片大屁完整版| 欧美一区免费视频| 国产精品久久久久久久免费软件| 国内精品亚洲| 欧美jizzhd精品欧美巨大免费| 91久久在线| 性感少妇一区| 国产日韩一区二区| 国产精品日韩一区二区三区| 日韩一级精品| 中文在线一区| 国产欧美日韩视频一区二区三区| 亚洲激情不卡| 日韩天天综合| 国产精品区二区三区日本| 国产日韩欧美一区在线 | 亚洲在线成人| 久久久福利视频| 亚洲欧美日韩精品久久久| 亚洲第一在线| 国产精品一页| 欧美日韩免费| 亚洲经典在线看| 午夜亚洲福利在线老司机| 欧美成人中文| 欧美成人有码| 夜夜爽99久久国产综合精品女不卡| 亚洲精品女人| 亚洲国产一区二区三区a毛片| 国产日韩免费| 午夜久久tv| 亚洲精品1区2区| 久久久久久久高潮| 亚洲国产婷婷| 久久国产精品久久精品国产| 国产一区二区中文| 羞羞视频在线观看欧美| 亚洲无线视频| 久久久精品动漫| 亚洲免费高清| 亚洲午夜精品福利| 久久综合中文| 先锋影音久久久| 一区在线视频| 欧美99在线视频观看| 日韩亚洲不卡在线| 欧美久久99| 久久精品卡一| 亚洲欧美日韩在线观看a三区 | 欧美日韩综合另类| 国产日韩综合| 国户精品久久久久久久久久久不卡| 亚洲国产黄色| 狠狠色综合网| 久久久久久穴| 午夜在线观看免费一区| 亚洲精品欧美| 欧美日韩系列| 欧美一区精品| 狂野欧美一区| 亚洲国产导航| 欧美色图首页| 欧美精品二区三区四区免费看视频| 一区二区三区国产盗摄| 亚洲激情专区| 欧美日韩在线不卡一区| 欧美激情91| 欧美在线高清| 欧美永久精品| 欧美日本韩国一区二区三区| 亚洲欧洲一二三| 黄色成人精品网站| 校园春色综合网| 国产精品久久亚洲7777| 国产欧美午夜| 亚洲高清精品中出| 在线观看一区视频| 亚洲国产日韩综合一区| 亚洲欧洲一区| 欧美在线播放一区二区| 欧美全黄视频| 狠狠色狠狠色综合人人| 在线日韩中文| 国内久久视频| 久久久久国产精品午夜一区| 久久精品天堂| 欧美激情综合| 亚洲一二三区精品| 亚洲国产精品毛片| 一本色道久久99精品综合| 中日韩在线视频| 久久久www| 99精品国产一区二区青青牛奶| 日韩视频在线一区二区三区| 亚洲影音先锋| 欧美成人有码| 亚洲精品中文字幕在线| 亚欧成人精品| 国产精品国产三级国产专区53| 免费在线欧美黄色| 亚洲激情成人| 激情综合网址| 一本色道久久综合亚洲精品高清| 国产精品视频| 国内精品久久久久久久影视蜜臀 | 欧美日韩三区四区| 91久久黄色| 欧美日韩岛国| 一区二区精品在线观看| 久久久久免费| 亚洲理论在线| 久久在线精品| 亚洲精品激情| 国产精品一区在线播放| 欧美人成在线| 亚洲免费在线| 精品动漫3d一区二区三区免费| 午夜在线精品偷拍| 亚洲高清资源| 欧美欧美全黄| 亚洲永久在线| 亚洲精品乱码视频| 欧美aⅴ99久久黑人专区| 亚洲精品欧美精品| 狠狠色噜噜狠狠狠狠色吗综合| 久久久久久久久一区二区| 欧美日本一区二区高清播放视频| 中文久久精品| 最新国产乱人伦偷精品免费网站| 欧美大片专区| 久久精品国产清高在天天线| 久久综合九色99| 亚洲一区二区免费看| 黑丝一区二区三区| 欧美精品三区| 欧美在线免费| 欧美在线三区| 欧美91视频| 欧美亚洲专区| 亚洲一区二区成人| 国产精品美女久久久| 久久久成人网| 夜夜爽99久久国产综合精品女不卡| 欧美日韩一区二区国产| 亚洲国产精品一区制服丝袜| 国产麻豆日韩| 国产精品永久| 国产精品一级| 国产日韩精品一区观看 | 欧美日韩福利| 国产精品日韩高清| 香蕉视频成人在线观看| 国产伦精品一区二区三| 国产一区二区三区的电影 | 国产精品国产三级国产专区53| 久久动漫亚洲| 久久久久久久久久久一区| 乱码第一页成人| 午夜欧美精品| 激情视频一区| 欧美日韩成人一区二区三区| 欧美视频导航| 一本久道久久综合狠狠爱| 国产精品视频| 欧美日韩国产三区| 亚洲国产一区二区精品专区| 在线视频观看日韩| 新67194成人永久网站| 欧美精品麻豆| 99xxxx成人网| 女人色偷偷aa久久天堂| 99国产精品视频免费观看一公开| 欧美日韩一区二区三| 在线观看亚洲| 久久久久网址| 亚洲视频一区| 国产区日韩欧美| 欧美在线观看天堂一区二区三区| 国产一在线精品一区在线观看| 亚洲激情在线| 今天的高清视频免费播放成人| 韩国一区二区三区美女美女秀| 国产亚洲午夜| 欧美日韩三级电影在线| 亚洲少妇自拍| 欧美日韩一区二区高清| 国产一区二区精品| 国产精品videossex久久发布| 一本色道久久精品| 欧美日本一区二区视频在线观看| 亚洲激情偷拍| 国产在线日韩| 极品av少妇一区二区| 香蕉久久a毛片| 亚洲黄色高清| 欧美日韩精品免费观看| 亚洲一二三区精品| 你懂的视频一区二区| 国产精品推荐精品| 玖玖在线精品| 亚洲一区久久| 国产午夜精品在线| 久久最新视频| 亚洲国产美女| 欧美性色综合| 欧美 日韩 国产 一区| 欧美一区二区三区在线免费观看| 玖玖国产精品视频| 午夜精品免费| 久久精品首页| 国产精品免费看| 亚洲精品孕妇| 亚洲一区二区三区高清| 亚洲人成毛片在线播放女女| 欧美日韩综合| 亚洲精品影视| 伊人成人在线| 久久精品一区二区国产| 久久久久久色| 久久婷婷av| 好吊一区二区三区| 国语精品中文字幕| 激情视频一区二区| 宅男噜噜噜66国产日韩在线观看| 亚洲第一网站| 亚洲精品一区二区三| 亚洲每日更新| 欧美日韩一视频区二区| 一区二区三区欧美成人| 亚洲精选一区| 久久资源av| 欧美日韩精品不卡| 精品不卡一区二区三区| 一区二区亚洲| 国产深夜精品| 六月丁香综合| 国产精品播放| 久久大逼视频| 欧美日韩免费高清| 91久久久久| 久久精品国语| 欧美三级乱码| 99精品热6080yy久久| 欧美激情自拍| 亚洲三级影院| 另类国产ts人妖高潮视频| 国产欧美91| 亚洲国产精品综合| 亚洲欧美日产图| 欧美另类专区| 免费一区二区三区| 国产精品国产三级欧美二区| 91久久亚洲| 精品二区久久| 欧美中文日韩| 激情视频一区二区| 老鸭窝毛片一区二区三区| 99国产精品| 欧美日韩午夜| 亚洲免费在线| 国产伦精品一区二区三区视频黑人| 久久午夜av| 亚洲日本激情| 久久国产日本精品| 国产欧美另类| 欧美日本二区| 国产偷久久久精品专区| 精品99视频| 欧美三区美女| 国产一区高清视频| 在线观看日韩av电影| 国产综合自拍| 欧美激情无毛| 久久精品综合一区| 美女精品国产| 亚洲高清资源| 伊人久久久大香线蕉综合直播| 国产精品区一区| 韩国亚洲精品| 久久福利毛片| 欧美日韩免费高清| 国产精品日韩欧美一区| 国内一区二区三区在线视频| 性欧美videos另类喷潮| 麻豆精品网站| 国产欧美日韩亚洲| 欧美~级网站不卡| 国产精品v欧美精品v日韩精品| 国产精品有限公司| 999亚洲国产精| 一区国产精品| 国产精品啊v在线| 欧美激情第8页| 久久综合一区二区三区| 亚洲先锋成人| 亚洲网址在线| 老鸭窝毛片一区二区三区 | 欧美 日韩 国产一区二区在线视频| 亚洲精品1区2区| 性色一区二区| 国产免费成人| 香蕉精品999视频一区二区 | 亚洲黄色免费| 欧美成人日韩| 亚洲区一区二| 亚洲精选国产| 亚洲欧美bt| 欧美一区2区三区4区公司二百| 亚洲毛片一区| 国产精品美女| 亚洲免费中文| 激情久久久久久| 99热这里只有成人精品国产| 欧美在线国产| 国产一区二区三区四区三区四| 校园春色综合网| 亚洲国产mv| 亚洲影院一区| 亚洲日本精品国产第一区| 国产一级一区二区| 亚洲另类视频| 亚洲欧美日韩视频二区| 久久久久久自在自线| 黄色av日韩| 亚洲一区二区网站| 欧美精品激情| av成人激情| 午夜精品美女久久久久av福利| 亚洲视频在线二区|