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

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

代碼問(wèn)題,求教 [MC]

  • MC用戶(hù)求助:

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

    ?

    ?

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

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

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

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

    第三、策略屬性中有重新計(jì)算的設(shè)置,可以勾選“委托單成交”,這個(gè)用來(lái)判斷委托單成交有點(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;

    ?

    ?

    ?

    我按照您說(shuō)的改了,這樣基本交易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;

    ?

    ?

    ?

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

 

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

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


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

相關(guān)文章

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

亚洲电影av在线| 亚洲国产另类久久精品| 久久99伊人| 亚洲午夜精品网| 日韩天堂在线视频| 亚洲国产91| 狠狠狠色丁香婷婷综合激情| 国产精品尤物| 国产欧美日韩| 国产一区二区观看| 国产女人精品视频| 国产精品综合久久久| 国产精品久久久久久久久动漫| 欧美日韩理论| 欧美视频一二三区| 欧美性猛交xxxx免费看久久久| 欧美揉bbbbb揉bbbbb| 欧美日韩一区视频| 欧美亚日韩国产aⅴ精品中极品| 欧美日韩一卡| 国产精品久久国产三级国电话系列| 欧美三级欧美一级| 国产精品久久久一本精品| 国产精品久久久久免费a∨大胸| 国产精品欧美一区二区三区奶水| 国产精品久久久久毛片软件| 国产乱码精品一区二区三区av| 国产麻豆视频精品| 国外成人免费视频| 在线免费高清一区二区三区| 亚洲国产精彩中文乱码av在线播放| 亚洲国产精品一区二区第四页av | 亚洲影院色无极综合| 亚洲网友自拍| 欧美一级黄色网| 久久精品亚洲精品| 欧美成人精品一区| 欧美三级日本三级少妇99| 国产精品久久久久久久一区探花 | 欧美啪啪一区| 欧美日韩在线精品| 国产精品综合色区在线观看| 国产一区二区三区自拍 | 99伊人成综合| 午夜久久久久久久久久一区二区| 久久国产精品久久久久久| 久久色中文字幕| 欧美精品久久一区| 国产精品日日摸夜夜摸av| 国产亚洲精品福利| 亚洲精品一区二区三区樱花| 亚洲图片你懂的| 久久久蜜桃一区二区人| 欧美精品乱人伦久久久久久| 欧美视频不卡| 国产偷自视频区视频一区二区| 亚洲大片免费看| 一区二区高清视频在线观看| 欧美一级在线视频| 欧美国产视频在线| 国产精品视频免费观看www| 国产一区二区三区久久| 亚洲免费福利视频| 久久av红桃一区二区小说| 欧美激情在线| 国产一区二区欧美日韩| 亚洲精选一区| 久久久久综合网| 国产精品v日韩精品| 一区福利视频| 亚洲自拍偷拍麻豆| 欧美暴力喷水在线| 国产精品一区2区| 亚洲精选久久| 久久亚洲精品欧美| 国产精品麻豆成人av电影艾秋| 亚洲成色www8888| 欧美一区2区视频在线观看| 欧美日韩www| 一区二区三区自拍| 亚洲欧美日韩精品久久亚洲区| 欧美福利电影网| 韩国视频理论视频久久| 亚洲小少妇裸体bbw| 欧美mv日韩mv亚洲| 国产永久精品大片wwwapp| 亚洲天堂视频在线观看| 欧美精品18videos性欧美| 国模吧视频一区| 亚洲欧美日韩精品久久亚洲区| 欧美日韩第一区日日骚| 亚洲电影av在线| 欧美综合国产| 国产精品永久免费在线| 日韩午夜av电影| 欧美第十八页| 在线观看精品| 欧美在线观看视频| 国产精品久久久久久久久免费樱桃 | 亚洲一区日韩在线| 欧美精品一区二区高清在线观看| 伊大人香蕉综合8在线视| 香蕉av福利精品导航| 国产精品扒开腿做爽爽爽软件| 亚洲精品乱码久久久久久日本蜜臀 | 久久影院午夜片一区| 国产日韩视频| 西瓜成人精品人成网站| 欧美性色aⅴ视频一区日韩精品| 日韩午夜视频在线观看| 欧美激情第4页| 91久久视频| 欧美α欧美αv大片| 在线视频观看日韩| 狼人天天伊人久久| 在线精品观看| 免费毛片一区二区三区久久久| 国内精品久久久久影院薰衣草| 久久精品在线视频| 国外成人网址| 久久久www成人免费精品| 国产美女精品视频免费观看| 亚洲一区二区三区四区视频| 欧美日韩免费高清| 亚洲视频免费在线观看| 国产精品成人免费视频| 亚洲一区在线直播| 国产精品视频观看| 性欧美8khd高清极品| 国产欧美日韩不卡| 久久精品人人做人人综合| 国产一区二区三区丝袜 | 亚洲精品一区中文| 欧美国产成人精品| 亚洲理论在线| 欧美午夜精品| 欧美一区二区三区四区在线| 国产一区在线免费观看| 久久久国产视频91| 亚洲福利一区| 欧美日韩精品一区二区三区| 一本大道av伊人久久综合| 国产精品国产a级| 欧美一区二区视频在线| 国产自产2019最新不卡| 麻豆av福利av久久av| 日韩亚洲一区在线播放| 国产精品高清在线| 午夜在线电影亚洲一区| 激情综合自拍| 欧美激情国产高清| 亚洲香蕉成视频在线观看 | 黄色成人av网| 欧美精品系列| 亚洲免费一级电影| 国产一区二区三区视频在线观看 | 国产精品一区二区三区四区五区| 久久精品日韩| 亚洲精品中文字幕女同| 国产精品免费观看视频| 久久久精品tv| 亚洲精品欧美一区二区三区| 欧美性色综合| 久久精品在线视频| 亚洲毛片在线| 国产日韩av一区二区| 欧美成人午夜激情视频| 亚洲综合色婷婷| 亚洲电影免费观看高清完整版在线观看| 欧美日韩成人综合| 久久av老司机精品网站导航| 亚洲欧洲日本专区| 国产女优一区| 欧美国产一区二区| 欧美一区二区啪啪| 亚洲精品日产精品乱码不卡| 国产精品一香蕉国产线看观看 | 久久精品导航| 99精品99久久久久久宅男| 国产视频在线观看一区| 欧美日本国产一区| 久久久精品网| 亚洲男人天堂2024| 亚洲精品视频中文字幕| 国产精品日韩二区| 欧美精品在线观看91| 久久国产精品亚洲77777| 夜夜嗨av色一区二区不卡| 国产一区二区视频在线观看| 欧美日韩亚洲天堂| 久久亚洲色图| 亚洲欧美久久久| 亚洲精品久久久一区二区三区| 国产亚洲精品v| 欧美视频导航| 欧美精品久久天天躁| 久久婷婷国产麻豆91天堂| 午夜精品视频| 亚洲图片欧美日产| 亚洲精品视频啊美女在线直播|