@Taiti QQ7650371 #Garis rata/Tren Strategi # Dengan menilai berapa banyak yang dibeli setelah terjatuh dari garpu # Berapa banyak yang dijual setelah Golden Fork naik ke puncak
#!/usr/local/bin/python #-*- coding: UTF-8 -*- #均线/趋势 策略 #通过判断 在死叉下底后回弹多少买入 #在金叉上扬至顶后下降多少卖出 # FastPeriod=3 #开仓快线周期 # SlowPeriod=7 #开仓慢线周期 # EnterPeriod=1 #开仓观察期 # ExitFastPeriod=3 #平仓线周期 # ExitSlowPeriod=7 #平仓慢线周期 # ExitPeriod=2 #平仓观察期 # PositionRatio=0.5 #仓位比例 # Interval=10 #轮询周期 # MAType=0 #均线类型 TA.EMA|TA.MA import types array = [TA.EMA,TA.MA] _MACalcMethod = array[MAType] def Cross(a,b): #计算均线方法 crossNum = 0 arr1 = [] arr2 = [] if(type(a) == types.ListType and type(b) == types.ListType): arr1 = a arr2 = b else: records = null while True: records = exchange.GetRecords() if(records and len(records) > a and len(records) > b): break Sleep(Interval) arr1 = _MACalcMethod(records,a) arr2 = _MACalcMethod(records,b) if(len(arr1) != len(arr2)): raise Exception("array length not equal") for i in range(len(arr1) - 1,-1,-1): if((type(arr1[i]) != types.IntType and type(arr1[i]) != types.FloatType) or (type(arr2[i]) != types.IntType and type(arr2[i]) != types.FloatType) ): break if(arr1[i] < arr2[i]): if(crossNum > 0): break crossNum -= 1 elif(arr1[i] > arr2[i]): if(crossNum < 0): break crossNum += 1 else: break return crossNum import datetime def Caltime(date1,date2): try: date1=time.strptime(date1,"%Y-%m-%d %H:%M:%S") date2=time.strptime(date2,"%Y-%m-%d %H:%M:%S") date1=datetime.datetime(date1[0],date1[1],date1[2],date1[3],date1[4],date1[5]) date2=datetime.datetime(date2[0],date2[1],date2[2],date2[3],date2[4],date2[5]) return date2-date1 except Exception,ex: Log('except Exception Caltime:',ex) return "except Exception" import time start_timexx =time.localtime(time.time()) #time.clock() start_time=time.strftime("%Y-%m-%d %H:%M:%S",start_timexx) buy_price=0 #买入价格 buy_qty=0 #买入数量 gains=0 #盈利 def my_buy(): #开仓 try: global buy_price,buy_qty initAccount = ext.GetAccount() #交易模板的导出函数, 获得账户状态,保存策略运行前账户初始状态 opAmount=1 #开仓之前判断有币没有没有先进行买入 if int(initAccount.Stocks)>1: if buy_price<1: buy_price=_C(exchange.GetTicker).Last buy_qty=initAccount.Stocks Log('开仓信息1 仓内还有比:',initAccount.Stocks,'进行清空','--开仓详情:',initAccount) return 1 if int(initAccount.Stocks)<1: if int(str(initAccount.Stocks).replace('0.',''))>=1: if buy_price<1: buy_price=_C(exchange.GetTicker).Last buy_qty=initAccount.Stocks Log('开仓信息2 仓内还有比:',initAccount.Stocks,'进行清空','--开仓详情:',initAccount) return 1 #if int(initAccount.Stocks)<1: if int(str(initAccount.Stocks).replace('0.',''))==0: #opAmount=1 opAmount = _N(initAccount.Balance*PositionRatio,3) #买入数量 Log("开仓没有币先进行 开仓买入%s元"%(str(opAmount))) #生成LOG日志 # else: # opAmount = _N(initAccount.Stocks * PositionRatio,3) #获取交易数量 # else: # opAmount = _N(initAccount.Stocks * PositionRatio,3) #获取交易数量 Dict = ext.Buy(opAmount) #买入ext.Buy if(Dict):#确认开仓成功 buy_price=Dict['price'] #买入价格 #{'price': 4046.446, 'amount': 1.5} buy_qty=Dict['amount'] #买入数量 print_log(1,initAccount,Dict) return 1 return 0 except Exception,ex: Log('except Exception my_buy:',ex) return 0 outAccount = ext.GetAccount() #初始化信息 def print_log(k_p,Account,Dict): try: global outAccount name="" if k_p: LogProfit(_N(gains,4),'开仓信息 钱:',Account.Balance,'--币:',Account.Stocks,'--开仓详情:',Dict) name="开仓" else: LogProfit(_N(gains,4),'平仓信息 钱:',Account.Balance,'--币:',Account.Stocks,'--平仓详情:',Dict) name="平仓" endAccount = ext.GetAccount() #初始化信息 date1=time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(time.time())) LogStatus("初始化投入2016/9/16 投入资金2000元\r\n", "本次初始化状态:",outAccount, "\r\n当前运 行状态:",endAccount, "\r\n本次开始运行时间:%s 已运行:%s\r\n"%(start_time,Caltime(start_time,date1)), "本次盈利:%s\r\n"%(str(gains)), "当前状态:%s--钱:%s--币:%s\r\n"%(str(name),str(Account.Balance),str(Account.Stocks)), "更新时间:%s"%(date1) ) # 测试 except Exception,ex: Log('except Exception print_log:',ex) def my_sell(): #平仓 try: global buy_price,buy_qty,gains,start_time nowAccount = ext.GetAccount() #交易模板的导出函数 获取账户信息 if _C(exchange.GetTicker).Last>buy_price+4: #当前价格一定要大于 开仓价格 Dict = ext.Sell(nowAccount.Stocks) if(Dict): sell_gains=(Dict['price']-buy_price)*Dict['amount'] gains=gains+sell_gains buy_price=0 #买入价格 buy_qty=0 #买入数量 print_log(0,nowAccount,Dict) return 1 return 0 except Exception,ex: Log('except Exception my_sell:',ex) return 0 def main(): global outAccount STATE_IDLE = -1 #空闲状态 state = STATE_IDLE #初始化 状态 为 空闲 Log("run ",outAccount) #输出初始账户信息 SetErrorFilter("GetAccount|GetRecords|GetTicker") #屏蔽错误内容 b=0 #开仓 b1=0 #检测次数 a=0 #平仓 a1=0 #检测次数 while True: if(state == STATE_IDLE): #判断状态是否 为空闲 触发开仓 #开仓 n = Cross(FastPeriod,SlowPeriod) #模板函数获取EMA指标快线、慢线交叉结果 if n<0: #确定当前为死叉 b1+=1 if b>=int(n): #说明现在还是在下跌涨趋势 b=int(n) else: #开始下跌 开仓 if(int(n)>=int(b)+int(EnterPeriod)): #确认上行走势 至自己定义的点 if my_buy(): #开仓 b=0 b1=0 state = PD_SHORT # if(b1>=10):#小波动操作开仓 # b1=0 # if my_buy(): # b=0 # state = PD_SHORT else:#平仓 n = Cross(ExitFastPeriod,ExitSlowPeriod) #模板函数获取EMA指标快线、慢线交叉结果 if n>0: #确定当前为金叉 a1+=1 if a<=int(n): #说明现在还是在上涨趋势 a=int(n) else: #开始下跌 平仓 if(int(n)<=int(a)-int(ExitPeriod)): #确认下行走势 至自己定义的点 if my_sell(): #平仓 a=0 a1=0 state = STATE_IDLE #更改状态 为空闲 触发开仓 # if(a1>=10): #小波动操作平仓 # a1=0 # if my_sell(): # a=0 # state = STATE_IDLE #更改状态 为空闲 触发开仓 Sleep(Interval * 1000)
Pohon PohonMelakukan laporan kesalahan Trackback (most recent call last): File "
Benarkah?Saya mengubahnya, setiap kali saya membeli dengan harga pasar, saya berlari beberapa kali tanpa membuat kesalahan, tetapi setiap kali saya kehilangan.
Benarkah?#!/usr/local/bin/python #-*- coding: UTF-8 -*- # Equality/Trend Strategi # Dengan menilai berapa banyak yang dibeli setelah terjatuh dari garpu # Berapa banyak yang dijual setelah Golden Fork naik ke puncak # FastPeriod = 3 # Pelan-pelan Pelan-pelan # SlowPeriod=7 # Pelan-pelan siklus trading # EnterPeriod=1 # periode observasi # ExitFastPeriod=3 # Siklus Garis Garis # ExitSlowPeriod=7 # Pelancongan siklus garis lambat #ExitPeriod=2 #Periode Pengamatan Ekspansi # Posisi Rasio = 0.5 # Posisi Rasio # Interval=10 # siklus pemeriksaan # MAType=0 # tipe rata-rata TA.EMA.MA array = [TA.EMA, TA.MA] _MACalcMethod = array[MAType] ext = pertukaran def Cross ((a, b): # Menghitung metode garis lurus crossNum = 0 Jadi arr1 = [] Jadi arr2 = [] listType = type ((arr1) IntType = type ((1) floatType = type ((1.1) if ((type ((a) == type ((arr1) and type ((b) == type ((arr2)): Arr1 = a Arr2 = b lainnya: catatan = null while True: records = exchange.GetRecords (dalam bahasa Inggris) if (records and len (records) > a dan len (records) > b): break Sleep (Interval) arr1 = _MACalcMethod ((records, a) arr2 = _MACalcMethod ((records, b) if ((len ((arr1)!= len ((arr2)): raise Exception (("Array length not equal") for i in range ((len ((arr1) - 1, -1, -1): if (((type(arr1[i])!= intType and type ((arr1[i])!= floatType) or (type(arr2[i])!= intType and type ((arr2[i])!= floatType)): break if ((arr1[i] < arr2[i]): if ((crossNum > 0): break crossNum - = 1 elif ((arr1[i] > arr2[i]): if ((crossNum < 0): break crossNum + = 1 lainnya: break return crossNum import tanggal waktu def Caltime ((date1, date2)): Coba: date1 = time.strptime ((date1, "%Y-%m-%d %H:%M:%S") date2 = time.strptime ((date2, "%Y-%m-%d %H:%M:%S") date1 = datetime. datetime ((date1[0], date1[1], date1[ 2], date1[3], date1[4], date1[5]) date2 = datetime. datetime ((date2[0], date2[1], date2[ 2], date2[3], date2[4], date2[5]) return date2 - tanggal 1 except Exception as ex: Log (('except Exception Caltime:', ex) return "kecuali pengecualian" waktu impor start_timexx = time.localtime ((time.time))) # time.clock ((( start_time = time.strftime (("%Y-%m-%d %H:%M:%S", start_timexx) Buy_price = 0 buy_qty = 0 # Jumlah pembelian Gains = 0 # Keuntungan def my_buy ((): #membuka saham Coba: global buy_price, buy_qty initAccount = ext.GetAccount() # Fungsi ekspor template transaksi, mendapatkan status akun, menyimpan kebijakan sebelum menjalankan status awal akun OpAmount = 1 #Mengetahui apakah ada koin sebelum memulai trading tanpa melakukan pembelian if int ((initAccount.Stocks) > 1: Jika buy_price < 1: buy_price = _C (exchange.GetTicker).Last buy_qty = initAccount.Stocks Log (('Informasi pembukaan saham 1' memiliki nilai:', initAccount.Stocks, ' melakukan pengosongan', '-- detail pembukaan:', initAccount) return 1 if int ((initAccount.Stocks) < 1: if int ((float))) str ((initAccount.Stocks).replace (('0.', ''))) >= 1: Jika buy_price < 1: buy_price = _C (exchange.GetTicker).Last buy_qty = initAccount.Stocks Log (('Informasi pembukaan saham 2' memiliki nilai:', initAccount.Stocks, ' melakukan pengosongan', '-- detail pembukaan:', initAccount) return 1 # if int ((initAccount.Stocks) < 1: if int ((float)) str ((initAccount.Stocks).replace (('0.', ''))) == 0: # opAmount=1 OpAmount = _N(initAccount.Balance * PositionRatio, 3) # Jumlah pembelian Log (("Memulai perdagangan tanpa koin terlebih dahulu Memulai perdagangan dengan membeli %s Yuan" % (str ((opAmount))) # Membuat log LOG # else: # opAmount = _N ((initAccount.Stocks * PositionRatio,3) # mendapatkan jumlah transaksi # else: # opAmount = _N ((initAccount.Stocks * PositionRatio,3) # mendapatkan jumlah transaksi orderId = ext.Buy ((-1,opAmount) # membeli ekst.Buy -1 mewakili harga pasar if ((orderId): # Mengkonfirmasi keberhasilan trading # Harga pembelian #{'price': 4046.446, 'amount: 1.5} Dict = exchange.GetOrder ((orderId)) Buy_price = Dict ['Price'] buy_qty = Dict['Amount'] # Jumlah pembelian print_log ((1, initAccount, Dict) return 1 Kembali 0 except Exception as ex: Log (('except Exception my_buy:',ex) Kembali 0 outAccount = ext.GetAccount (() # Inisialisasi informasi def print_log ((k_p, Account, Dict): Coba: Global outAccount nama = "" Jika k_p: LogProfit ((_N(gains, 4), 'Informasi pembukaan perdagangan Uang:', Account.Balance, '--mata uang:', Account.Stocks, '--detil perdagangan:', Dict) name = "Pembukaan" lainnya: LogProfit ((_N(gains, 4), 'Informasi neraca uang:', Account.Balance, '--mata uang:', Account.Stocks, '--detil neraca:', Dict) name = "Pengelolaan" EndAccount = ext.GetAccount (() # Inisialisasi informasi date1 = time.strftime (("%Y-%m-%d %H:%M:%S", time.localtime ((time.time))) LogStatus ((("Inisialisasi Investasi 2016/9/16 Investasi 2000 Yuan\r\n", "Status initialization saat ini:", outAccount, "\r\n Status berjalan saat ini:", endAccount, "\r\n Waktu awal saat ini: %s sudah berjalan: %s\r\n" % ( start_time, Caltime ((start_time, date1)), "Keuntungan ini: %s\r\n" % (str(gains) "Status saat ini: %s-- uang: %s-- mata uang: %s\r\n" % (str(name), Str (Akuntansi.Balanse), str (Akuntansi.Stocks) "Tanggal pembaruan: %s" % (date1) # Uji Coba except Exception as ex: Log (('except Exception print_log:', ex) def my_sell (): #Pengadaan Coba: global buy_price, buy_qty, gains, start_time nowAccount = ext.GetAccount() # Fungsi ekspor templat transaksi Dapatkan informasi akun if _C ((exchange.GetTicker).Last > buy_price + 4: # Harga saat ini harus lebih besar dari harga buka Log ((type ((nowAccount.Stocks), nowAccount.Stocks) orderId = ext.Sell ((-1, nowAccount.Stocks) #-1 mewakili harga pasar if ((orderId): Log ((type ((orderId)) Dict = ext.GetOrder ((orderId)) sell_gains = (Dict ['Price'] - buy_price) * Dict ['Amount'] gains = gains + sell_gains Buy_price = 0 buy_qty = 0 # Jumlah pembelian print_log ((0, nowAccount, Dict) return 1 Kembali 0 except Exception as ex: Log (('except Exception my_sell:',ex) Kembali 0 def main (: Global outAccount Status kosong state = STATE_IDLE # Inisialisasi Status kosong Log (("run", outAccount) # Mengekspor informasi akun awal SetErrorFilter (("GetAccount di GetRecords di GetTicker") # Menyimpan konten yang salah b = 0 # Buka Posisi B1 = 0 # Jumlah deteksi a = 0 # Perbandingan a1 = 0 # Jumlah deteksi while True: if ((state == STATE_IDLE): # Memutuskan apakah status akan memicu bukaan untuk kosong # Buka toko n = Cross ((FastPeriod, SlowPeriod) # Fungsi templat mendapatkan hasil silang garis cepat, garis lambat dari indikator EMA if n < 0: # Menentukan dead fork saat ini B1 + 1 = 1 if b >= int (((n): # menjelaskan apakah saat ini sedang mengalami penurunan atau tidak b = int ((n) else: # mulai turun Buka posisi if ((int ((n) >= int ((b) + int ((EnterPeriod)): # Mengkonfirmasi pergerakan naik ke titik yang Anda tentukan if my_buy ((): # membuka saham b adalah 0. b1 = 0 state = PD_SHORT # if ((b1>=10): # operasi volatilitas kecil # b1 = 0 #if my_buy: #b=0 # state = PD_SHORT else: # Tanah lapis n = Cross ((ExitFastPeriod, ExitSlowPeriod) # Fungsi templat untuk mendapatkan EMA indikator garis cepat, garis lambat silang hasil if n > 0: # Tentukan sekarang sebagai Golden Fork a1 + 1 = 1 if a <= int ((n): # menunjuk pada tren naik saat ini a = int ((n) else: # mulai turun, stabilisasi if ((int(n) <= int ((a) - int ((ExitPeriod)): # Mengkonfirmasi tren penurunan ke titik yang Anda tentukan if my_sell ((): #Pelabuhan a = 0 a1 = 0 state = STATE_IDLE # Mengubah status sebagai kosong untuk memicu perdagangan # if ((a1>=10): # operasi volatilitas kecil # a1 = 0 #if my_sell: # a = 0 # state = STATE_IDLE # Mengubah status menjadi kosong Sleep ((Interval * 1000)
Benarkah?#!/usr/local/bin/python #-*- coding: UTF-8 -*- # Equality/Trend Strategi # Dengan menilai berapa banyak yang dibeli setelah terjatuh dari garpu # Berapa banyak yang dijual setelah Golden Fork naik ke puncak # FastPeriod = 3 # Pelan-pelan Pelan-pelan # SlowPeriod=7 # Pelan-pelan siklus trading # EnterPeriod=1 # periode observasi # ExitFastPeriod=3 # Siklus Garis Garis # ExitSlowPeriod=7 # Pelancongan siklus garis lambat #ExitPeriod=2 #Periode Pengamatan Ekspansi # Posisi Rasio = 0.5 # Posisi Rasio # Interval=10 # siklus pemeriksaan # MAType=0 # tipe rata-rata TA.EMA.MA array = [TA.EMA, TA.MA] _MACalcMethod = array[MAType] ext = pertukaran def Cross ((a, b): # Menghitung metode garis lurus crossNum = 0 Jadi arr1 = [] Jadi arr2 = [] listType = type ((arr1) IntType = type ((1) floatType = type ((1.1) if ((type ((a) == type ((arr1) and type ((b) == type ((arr2)): Arr1 = a Arr2 = b lainnya: catatan = null while True: records = exchange.GetRecords (dalam bahasa Inggris) if (records and len (records) > a dan len (records) > b): break Sleep (Interval) arr1 = _MACalcMethod ((records, a) arr2 = _MACalcMethod ((records, b) if ((len ((arr1)!= len ((arr2)): raise Exception (("Array length not equal") for i in range ((len ((arr1) - 1, -1, -1): if (((type(arr1[i])!= intType and type ((arr1[i])!= floatType) or (type(arr2[i])!= intType and type ((arr2[i])!= floatType)): break if ((arr1[i] < arr2[i]): if ((crossNum > 0): break crossNum - = 1 elif ((arr1[i] > arr2[i]): if ((crossNum < 0): break crossNum + = 1 lainnya: break return crossNum import tanggal waktu def Caltime ((date1, date2)): Coba: date1 = time.strptime ((date1, "%Y-%m-%d %H:%M:%S") date2 = time.strptime ((date2, "%Y-%m-%d %H:%M:%S") date1 = datetime. datetime ((date1[0], date1[1], date1[ 2], date1[3], date1[4], date1[5]) date2 = datetime. datetime ((date2[0], date2[1], date2[ 2], date2[3], date2[4], date2[5]) return date2 - tanggal 1 except Exception as ex: Log (('except Exception Caltime:', ex) return "kecuali pengecualian" waktu impor start_timexx = time.localtime ((time.time))) # time.clock ((( start_time = time.strftime (("%Y-%m-%d %H:%M:%S", start_timexx) Buy_price = 0 buy_qty = 0 # Jumlah pembelian Gains = 0 # Keuntungan def my_buy ((): #membuka saham Coba: global buy_price, buy_qty initAccount = ext.GetAccount() # Fungsi ekspor template transaksi, mendapatkan status akun, menyimpan kebijakan sebelum menjalankan status awal akun OpAmount = 1 #Mengetahui apakah ada koin sebelum memulai trading tanpa melakukan pembelian if int ((initAccount.Stocks) > 1: Jika buy_price < 1: buy_price = _C (exchange.GetTicker).Last buy_qty = initAccount.Stocks Log (('Informasi pembukaan saham 1' memiliki nilai:', initAccount.Stocks, ' melakukan pengosongan', '-- detail pembukaan:', initAccount) return 1 if int ((initAccount.Stocks) < 1: if int ((float))) str ((initAccount.Stocks).replace (('0.', ''))) >= 1: Jika buy_price < 1: buy_price = _C (exchange.GetTicker).Last buy_qty = initAccount.Stocks Log (('Informasi pembukaan saham 2' memiliki nilai:', initAccount.Stocks, ' melakukan pengosongan', '-- detail pembukaan:', initAccount) return 1 # if int ((initAccount.Stocks) < 1: if int ((float)) str ((initAccount.Stocks).replace (('0.', ''))) == 0: # opAmount=1 OpAmount = _N(initAccount.Balance * PositionRatio, 3) # Jumlah pembelian Log (("Memulai perdagangan tanpa koin terlebih dahulu Memulai perdagangan dengan membeli %s Yuan" % (str ((opAmount))) # Membuat log LOG # else: # opAmount = _N ((initAccount.Stocks * PositionRatio,3) # mendapatkan jumlah transaksi # else: # opAmount = _N ((initAccount.Stocks * PositionRatio,3) # mendapatkan jumlah transaksi orderId = ext.Buy ((-1,opAmount) # membeli ekst.Buy -1 mewakili harga pasar if ((orderId): # Mengkonfirmasi keberhasilan trading # Harga pembelian #{'price': 4046.446, 'amount: 1.5} Dict = exchange.GetOrder ((orderId)) Buy_price = Dict ['Price'] buy_qty = Dict['Amount'] # Jumlah pembelian print_log ((1, initAccount, Dict) return 1 Kembali 0 except Exception as ex: Log (('except Exception my_buy:',ex) Kembali 0 outAccount = ext.GetAccount (() # Inisialisasi informasi def print_log ((k_p, Account, Dict): Coba: Global outAccount nama = "" Jika k_p: LogProfit ((_N(gains, 4), 'Informasi pembukaan perdagangan Uang:', Account.Balance, '--mata uang:', Account.Stocks, '--detil perdagangan:', Dict) name = "Pembukaan" lainnya: LogProfit ((_N(gains, 4), 'Informasi neraca uang:', Account.Balance, '--mata uang:', Account.Stocks, '--detil neraca:', Dict) name = "Pengelolaan" EndAccount = ext.GetAccount (() # Inisialisasi informasi date1 = time.strftime (("%Y-%m-%d %H:%M:%S", time.localtime ((time.time))) LogStatus ((("Inisialisasi Investasi 2016/9/16 Investasi 2000 Yuan\r\n", "Status initialization saat ini:", outAccount, "\r\n Status berjalan saat ini:", endAccount, "\r\n Waktu awal saat ini: %s sudah berjalan: %s\r\n" % ( start_time, Caltime ((start_time, date1)), "Keuntungan ini: %s\r\n" % (str(gains) "Status saat ini: %s-- uang: %s-- mata uang: %s\r\n" % (str(name), Str (Akuntansi.Balanse), str (Akuntansi.Stocks) "Tanggal pembaruan: %s" % (date1) # Uji Coba except Exception as ex: Log (('except Exception print_log:', ex) def my_sell (): #Pengadaan Coba: global buy_price, buy_qty, gains, start_time nowAccount = ext.GetAccount() # Fungsi ekspor templat transaksi Dapatkan informasi akun if _C ((exchange.GetTicker).Last > buy_price + 4: # Harga saat ini harus lebih besar dari harga buka Log ((type ((nowAccount.Stocks), nowAccount.Stocks) orderId = ext.Sell ((-1, nowAccount.Stocks) #-1 mewakili harga pasar if ((orderId): Log ((type ((orderId)) Dict = ext.GetOrder ((orderId)) sell_gains = (Dict ['Price'] - buy_price) * Dict ['Amount'] gains = gains + sell_gains Buy_price = 0 buy_qty = 0 # Jumlah pembelian print_log ((0, nowAccount, Dict) return 1 Kembali 0 except Exception as ex: Log (('except Exception my_sell:',ex) Kembali 0 def main (: Global outAccount Status kosong state = STATE_IDLE # Inisialisasi Status kosong Log (("run", outAccount) # Mengekspor informasi akun awal SetErrorFilter (("GetAccount di GetRecords di GetTicker") # Menyimpan konten yang salah b = 0 # Buka Posisi B1 = 0 # Jumlah deteksi a = 0 # Perbandingan a1 = 0 # Jumlah deteksi while True: if ((state == STATE_IDLE): # Memutuskan apakah status akan memicu bukaan untuk kosong # Buka toko n = Cross ((FastPeriod, SlowPeriod) # Fungsi templat mendapatkan hasil silang garis cepat, garis lambat dari indikator EMA if n < 0: # Menentukan dead fork saat ini B1 + 1 = 1 if b >= int (((n): # menjelaskan apakah saat ini sedang mengalami penurunan atau tidak b = int ((n) else: # mulai turun Buka posisi if ((int ((n) >= int ((b) + int ((EnterPeriod)): # Mengkonfirmasi pergerakan naik ke titik yang Anda tentukan if my_buy ((): # membuka saham b adalah 0. b1 = 0 state = PD_SHORT # if ((b1>=10): # operasi volatilitas kecil # b1 = 0 #if my_buy: #b=0 # state = PD_SHORT else: # Tanah lapis n = Cross ((ExitFastPeriod, ExitSlowPeriod) # Fungsi templat untuk mendapatkan EMA indikator garis cepat, garis lambat silang hasil if n > 0: # Tentukan sekarang sebagai Golden Fork a1 + 1 = 1 if a <= int ((n): # menunjuk pada tren naik saat ini a = int ((n) else: # mulai turun, stabilisasi if ((int(n) <= int ((a) - int ((ExitPeriod)): # Mengkonfirmasi tren penurunan ke titik yang Anda tentukan if my_sell ((): #Pelabuhan a = 0 a1 = 0 state = STATE_IDLE # Mengubah status sebagai kosong untuk memicu perdagangan # if ((a1>=10): # operasi volatilitas kecil # a1 = 0 #if my_sell: # a = 0 # state = STATE_IDLE # Mengubah status menjadi kosong Sleep ((Interval * 1000)
Dbo2015except Exception my_sell: ooOooo000oOO instance tidak memiliki atribut 'GetMinStock' Apakah Anda ingin tahu apa yang dimaksud dengan ini?
17707250703Itu masih bagus, tapi tidak bisa digunakan sekarang.
AntartikaGaris rata-rata _ tren _ strategi perdagangan _ 1 http://v.youku.com/v_show/id_XMTczMTAxMjQ5Ng==.html Garis rata-rata _ tren _ perdagangan strategis _ HD2 http://v.youku.com/v_show/id_XMTczMDk4MTEwMA==.html