中文字幕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久久国产综合久久蜜月精品| 亚洲国产日韩欧美一区二区三区| 韩国一区二区三区美女美女秀| 伊人成人网在线看| 久久精品日韩欧美| 在线成人黄色| 国产日韩亚洲| 女生裸体视频一区二区三区| 黄色成人在线网址| 久久精品免费| 黄色一区二区三区四区| 国产精品毛片在线| 欧美午夜在线| 久久精品导航| 欧美日韩一区综合| 国产精品亚洲不卡a| 欧美搞黄网站| 久久国产精品99国产| 你懂的亚洲视频| 亚洲精品一级| 午夜精品一区二区三区四区| 国产午夜精品一区二区三区欧美 | 性娇小13――14欧美| 国产视频一区在线观看一区免费| 久久精品毛片| 国产精品丝袜xxxxxxx| 影音先锋日韩资源| 国内外成人免费视频| 欧美 日韩 国产在线| 99综合视频| 亚洲黄色大片| 亚洲激情婷婷| 99精品免费视频| 好吊日精品视频| 欧美日韩一区二区三| 欧美国产精品| 国产精品国产亚洲精品看不卡15| 久久天堂成人| 先锋影音国产一区| 激情综合中文娱乐网| 欧美女人交a| 你懂的亚洲视频| 久久婷婷久久| 午夜精品亚洲| 国产一区二区中文字幕免费看| 欧美国产专区| 国产一区自拍视频| 亚洲精品护士| 国产精品美女黄网| 久久精品日产第一区二区| 先锋影音一区二区三区| 噜噜噜躁狠狠躁狠狠精品视频| 国产精品最新自拍| 欧美一区二区三区在线播放| 欧美一区1区三区3区公司 | 午夜一区二区三区不卡视频| 一本一道久久综合狠狠老精东影业 | 亚洲免费影院| 国产欧美一区二区色老头| 亚洲人人精品| 亚洲在线播放| 欧美日韩一区二区三| 在线观看欧美亚洲| 国产视频一区在线观看一区免费| 国产精品视频免费观看| 女人色偷偷aa久久天堂| 在线观看视频免费一区二区三区| 亚洲精品一区二区三区樱花| 国产一级久久| 欧美成人dvd在线视频| 精品成人国产| 国产亚洲精品自拍| 欧美激情1区2区| 日韩一级欧洲| 欧美日韩精品综合| 国产视频一区三区| 欧美午夜影院| 国产精品夜夜夜| 黄色一区二区三区四区| 久久成人亚洲| 亚洲精品日本| 午夜久久99| 国产精品一区二区三区免费观看| 午夜精品免费| 欧美亚洲一区二区三区| 韩日午夜在线资源一区二区| 亚洲一区二区三区四区中文 | 国产精品v亚洲精品v日韩精品| 99国产一区| 欧美亚韩一区| 午夜精品电影| 久久久久久九九九九| 一区二区精品在线| 亚洲二区三区四区| 欧美精品导航| 久久综合中文| 欧美一级一区| 国产精品免费看| 亚洲婷婷免费| 国内精品久久久久久久影视麻豆| 麻豆成人精品| 久久国产精品一区二区三区| 亚洲精品日本| 亚洲精品综合| 在线成人欧美| 在线观看成人av电影| 国精品一区二区| 国产精品99一区二区| 欧美日本一区| 欧美大香线蕉线伊人久久国产精品| 国产日韩一区二区| 国产精品久久久久久久久婷婷| 欧美1区视频| 国产精品日韩高清| 亚洲三级观看| 夜夜精品视频| 在线观看亚洲视频啊啊啊啊| 亚洲视频高清| 日韩亚洲国产精品| 99综合在线| 一区二区精品在线观看| 亚洲精品韩国| 亚洲一区二区成人| 久久av二区| 欧美99在线视频观看| 欧美在线播放一区| 欧美另类视频| 99pao成人国产永久免费视频| 亚洲美女毛片| 亚洲美女毛片| 亚洲欧美卡通另类91av| 噜噜噜在线观看免费视频日韩| 久久久久久婷| 黄色综合网站| 亚洲影院在线| 国产精品mv在线观看| 在线日韩中文| 亚洲一区日韩在线| 欧美日本二区| 999亚洲国产精| 久久精品123| 国外成人免费视频| 亚洲欧美日韩国产一区二区| 午夜久久福利| 国产亚洲毛片在线| 欧美日本韩国一区二区三区| 最新成人av网站| 久久久久久一区二区| 另类亚洲自拍| 久久精品国产综合精品| 国产精品yjizz| 国产精品亚洲不卡a| 玖玖精品视频| 在线一区免费观看| 欧美黄色一区| 中文一区二区| 亚洲小说欧美另类社区| 亚洲主播在线| 亚洲激情自拍| 欧美日本二区| 久久人人97超碰国产公开结果| 亚洲激情午夜| 欧美日韩一区二区视频在线| 国产精品夜夜夜一区二区三区尤| 欧美日韩一区在线观看视频| 噜噜噜91成人网| 国产一区二区精品| 亚洲成人资源| 欧美区亚洲区| 狼狼综合久久久久综合网| 亚洲黄色成人久久久| 欧美日韩天堂| 久久九九免费| 亚洲一区日韩| 一本久久知道综合久久| 韩国在线视频一区| 国产精品国产三级国产专区53| 久久精品人人| 久久九九国产| 久久久国产亚洲精品| 国产精品日韩欧美一区二区| 亚洲精品1区2区| 在线看无码的免费网站| 黄色成人在线网址| 一区在线播放| 亚洲美女网站| 亚洲毛片网站| 夜夜夜久久久| 在线亚洲观看| 欧美日本一区二区视频在线观看| 在线观看视频免费一区二区三区| 欧美日韩一区二区视频在线观看| 久久综合激情| 欧美精品导航| 国产精品chinese| 影音先锋一区| 一区二区福利| 美女精品一区| 欧美日韩一区二区视频在线| 狠狠色综合色区| 亚洲久久成人| 亚洲一区二区精品在线观看| 亚洲中字在线| 欧美日韩a区| 亚洲激情不卡| 国产乱码精品| 欧美区日韩区| 亚洲激情精品| 欧美一级视频| 欧美日韩免费观看一区| 亚洲精品乱码视频 | 国产欧美高清| 国产欧美日韩视频一区二区三区| 国产精品入口66mio| 久久人人97超碰人人澡爱香蕉| 午夜久久福利| 亚洲免费观看| 久久国产精品毛片| 黄色成人在线网站| 免费久久99精品国产自在现线| 欧美成人dvd在线视频| 亚洲高清视频一区二区| 国产伦精品一区二区三区高清版| 欧美在线免费| 中文日韩在线| 欧美人成在线| 亚洲专区一区| 亚洲精品日本| 欧美日韩精品| 99这里有精品| 欧美国产高清| 国产一区白浆| 亚洲福利国产| 国产精品二区二区三区| aa亚洲婷婷| 欧美日韩精品综合| 西西人体一区二区| 亚洲另类视频| 国产一区二区中文| 美女国产一区| 亚洲少妇一区| 亚洲高清激情| 黑人一区二区三区四区五区| 老鸭窝91久久精品色噜噜导演| 国内精品嫩模av私拍在线观看| 亚洲在线成人| 国产欧美日韩一区二区三区在线| 国产一区日韩一区| 久久午夜视频| 国产精品一区亚洲| 亚洲精品欧洲精品| 亚洲国产精品一区在线观看不卡 | 在线日韩av永久免费观看| 欧美1级日本1级| 噜噜噜在线观看免费视频日韩| 亚洲国产精品久久久久婷婷老年| 欧美成人一区二免费视频软件| 亚洲在线播放| 久久福利一区| 亚洲免费婷婷| 校园春色综合网| 亚洲欧美视频| 裸体丰满少妇做受久久99精品| 一本一本a久久| 国产日韩视频| 国产精品一级| 久久精品三级| 欧美激情综合| 极品少妇一区二区三区| 亚洲午夜91| 亚洲人成人一区二区三区| 日韩视频精品在线观看| 亚洲人久久久| 国产视频在线观看一区| 国产模特精品视频久久久久| 母乳一区在线观看| 欧美精品国产一区二区| 欧美视频成人| 亚洲欧洲日韩综合二区| 亚洲区欧美区| 欧美亚洲专区| 欧美福利影院| 亚洲高清精品中出| 亚洲一区网站| 欧美精品午夜| 日韩天堂av| 亚洲欧美日韩在线综合| 欧美视频官网| 国产一区导航| 欧美三区在线| 国产欧美91| 欧美成人一区二区在线| 韩国在线一区| 亚洲免费一区二区| 狠狠色狠狠色综合人人| 亚洲综合不卡| 一区国产精品| 久久精品综合| 日韩午夜一区| 欧美一区亚洲二区| 999在线观看精品免费不卡网站| 噜噜噜躁狠狠躁狠狠精品视频| 激情久久婷婷| 久久精品99| 正在播放亚洲| 黄色一区二区三区四区| 免费看黄裸体一级大秀欧美| 国产在线成人| 久久综合图片| 国产午夜精品一区二区三区欧美| aa成人免费视频| 一区二区视频欧美| 夜夜爽av福利精品导航| 久久久久久久高潮| 日韩亚洲国产欧美| 欧美二区不卡| 欧美一级二区| 99成人精品| 欧美日韩国产精品一区二区亚洲| 国产日韩精品久久| 狠狠色噜噜狠狠狠狠色吗综合| 欧美专区18| 国产亚洲第一区| 18成人免费观看视频| 久久精品欧美| 国产日韩欧美二区| 亚洲黄网站黄| 黄色一区二区三区四区| 久久综合久久综合这里只有精品| 99视频+国产日韩欧美| 国模大胆一区二区三区| 欧美一区视频| 久久久久久穴| 午夜一区二区三区不卡视频| 一本久道综合久久精品| 最新日韩av| 在线视频观看日韩| 在线看片欧美| 在线观看一区欧美| 亚洲国产精品综合| 黄色成人av网站| 精品电影一区| 在线观看亚洲视频啊啊啊啊| 狠色狠色综合久久| 樱桃成人精品视频在线播放| 国产精品第十页| 欧美午夜在线视频| 国产精品videosex极品| 国产精品porn| 亚洲先锋成人| 亚洲青色在线| 亚洲一区日本| 久久综合九色99| 欧美午夜精品久久久久免费视| 狠狠入ady亚洲精品| 亚洲黄页一区| 亚洲一区二区三区午夜| 亚洲福利免费| 国精品一区二区三区| 牛夜精品久久久久久久99黑人| 欧美不卡在线| 亚洲国产欧美日韩| 国产亚洲第一区| 久久久亚洲一区| 国内一区二区三区在线视频| 伊人激情综合| 国产一区二区三区黄| 久久成人资源| 国产一区二区无遮挡| 99亚洲伊人久久精品影院红桃| 国产三区精品| 欧美精品麻豆| 亚洲每日更新| 免费中文字幕日韩欧美| 欧美精品二区| 亚洲精品在线二区| 久久亚洲高清| 999亚洲国产精| 欧美在线视频二区| 日韩亚洲在线| 欧美片第1页综合| 一区二区三区欧美成人| 欧美~级网站不卡| 国产欧美短视频| 欧美精品不卡| 国产精品一区二区三区四区五区| 久久综合伊人| 国产三区二区一区久久| 欧美视频导航| 久久久av水蜜桃| 国产视频精品网| 亚洲视屏一区| 久久亚洲欧洲| 亚洲美女91| 国产精品mv在线观看| 欧美一级视频| 国产精品最新自拍|