目前分類:DDT(DeepDiscountTrading極度折扣交易)美國期貨券商 (63)

瀏覽方式: 標題列表 簡短摘要

這是一個蠻特別的進場方式運用在外匯類期貨(現貨保證金也適用)

 
策略思考流程:
1.假設:
外匯期貨成交量是從下午倫敦交易所開盤後開始增加延續到晚上new york 交易時段,價格波動也是如此.
在這兩個交易所時段會造成價格大幅跳動的通常是重要經濟數據發佈時,如 PMI,GDP 或央行升降息.
(發佈的時間表可以在這裡找到: http://www.forexfactory.com/calendar.php )
一般投資者當然是等發佈後再去順勢進場,或發佈前去猜方向,因為我們不可能提前知道經濟數據的消息.
但如果是一些大型投資機構,是否能提前知道呢?或是因要建立的部份太大所以需要提前一段時間去佈單.
所以假設:
需建立大量部份的投資者,事前已經由消息或數據判斷出下午倫敦或晚上紐約可能的走勢,
所以在東京交易時段價格波動不大時就開始佈單,因為大量佈單進場可能會造成價格往該方向移動
故策略可以定出:
如果在東京盤的一段時間價格是往上的,那就在下午倫敦盤時作多.往下就做空
 
下圖是以台北時間為主,三個交易所開,收盤時間
圖片 1  
 
2.統計及策略制定
事實上,我這假設蠻牽強的,看起來好像有道理但完全是用自己的想法去假設的,沒有任何證據.
還好現在交易的統計工具都蠻容易使用的.我們只要寫個簡單程式就能驗證想法對不對了
首先就是要找出時間:
東京交易所的一段時間上漲->找出那一段?
倫敦交易所開盤後去下單->找出開盤後過多久?
 
我以歐元做這個統計,發現如果在 CME  交易所時間21:30~22:30 (就是我們當地時間10:30~11:30)
如果這一小時走勢是漲的那在CME  交易所時間 06:30(就是我們當地時間17:30 ) 就去做多,猜走勢延續
如果是跌,就放空,同樣猜走勢會延續.
停損,停利皆為50點 (因為只是要了解是否這個時段的走勢是否有延續的特性)
如果放到收盤前沒停損也沒停利就出掉.
 
測試結果+績效:
標的:歐元期貨
K棒週期:30分鐘
手續費及滑價設定:
圖片 2  
 
測試日期:2009~2014/5 (使用CME交易所時區)
結果:
圖片 3  
 
圖片 4  
由結果可以得知:以台北時間10:30~11:30(夏令),這一小時的漲跌去猜下午17:30後的走勢,停損停利各為50點
勝率是大於5成的,由回測結果得知勝率是54.15%.平均每筆可以獲利42.52美元
也就是這個假設的想法應該是成立的.
圖片 6  
 
附上程式碼供參考:
inputs:gain(50),loss(50);

if time=2230 then begin
value1=close ;
value2=close[2] ;
end;
if time=0630 and value1-value2>0 then begin
buy next bar at open limit;
end;
if time=0630 and value1-value2<0 then begin
sellshort next bar at open limit;
end;
if marketposition > 0 then begin
sell next bar at entryprice(0)+MinMove*gain point limit;
sell next bar at entryprice(0)-MinMove*loss point stop;
end;
if marketposition < 0 then begin
buytocover next bar at entryprice(0)-MinMove*gain point limit;
buytocover next bar at entryprice(0)+MinMove*loss point stop;
end;
if time>=1500 then begin
sell next bar at market;
buytocover next bar at market;
end;
 
 
 
這裡說明一下:
可以看到我進場用Limit  ,因為進場時間點是下午05:30(台北時間),那段時間沒什麼消息公佈,
而且進場方式不是突破去追價,或大賺小賠的模式.
以這策略來說,用limit 單可以減少不必要的滑價,以程式寫法就是會掛出 limit  at open 價,掛單時間30分鐘,如果沒成交就會取消
 
3.驗證:
思考到這裡應該會有一個很大的疑問?
為什麼時段要捉:台北時間10:30~11:30,(21:30~22:30 CME)?為什麼是這一小時?
倫敦交易所交時區間那為久,為什要進場時間點是台北時間:17:30(06:30 CME),而不是18:00,18:30??
這些時段有什麼理由?
 
說真的,我不知道.因為這是利用程式在各個時段跑出來的結果.使用這段時間會是獲利的.
假設的核心在於大資金者可能有較大機率預測出之後(下午)的走勢,所以會先佈單(早上)
如果這假設成立,其它幣別的外匯期貨應該大部份都要適用,而且時段一定要相同.
 
為了驗證,我把這策略直接套用在其它幣別上.
首先是跟歐元相關性很小的澳幣(如果先測跟歐元相關性大的SF 就沒什麼意義了)
測試結果
程式跟上面歐元完全一樣
標的:澳幣期貨
手續費+滑價設定
圖片 13  
圖片 7  
圖片 8  
澳幣的結果是獲利的,表示這個時段是有意義的,不是只限於單一貨幣的現象
 
再來套用在加幣上
測試結果
程式跟上面歐元完全一樣
標的:加幣期貨
圖片 10  
 
當然跟歐元相關性大的瑞士法朗也是獲利的
標的:瑞士法朗期貨
圖片 12  
 
每個貨幣期貨的停損停利點數可以變更,績效會變穩定一些.(但時段不能變,一變就沒有意義了)
這個50點只是我一開始隨便設的,因為要確定如果停損停利相同這樣做的勝率是否大於5成.
可以設成其它的值,或也不用停損停利都相同.
而且可以加入一些比較靈活的出場模式,如進場後如果一段時間都沒獲利就先出掉
 
最後:
這樣驗證下來,可以確定下午走勢有較大的機率會延續早上那段時點的走勢.
那除了外匯,是否也可適用於其它商品呢?
這就有再研究的空間了~
資料來源:程式交易
文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()

如果剛接觸國外商品,且原本有做台指當沖策略的交易者.

可以把台指當沖的順勢策略往這兩個商品套用,應該很快能找到可行的策略.
策略屬性可以用平常小賠,然後一次賺大的,"低勝率-高賺賠比"的方式來做
因為這兩個商品在主要交易時段波動都很大,也常有順勢行情產生.
不過這兩個商品建議做當沖就好~
 
以下說明與介紹:
HO,RB 都算是原油蒸餾後的商品,可以Google 一下,這邊就不多說明,因為這商品主要是做當沖,

我要的是日內波動大且能常有順勢行情.
這兩個商品的主要交易時段,跳動點數,每點價格都一樣.
以下用 HO 做說明,RB就照用就行了.
 
商品規格
一大點金額: 42000 美元
跳動點: 0.0001
每跳動點金額: 4.2 美元
手續費:2.32美元
保證金: 4015美元
目前價格:2.9007
滑價需設:10點 
這個滑價要特別說明一下,這文章是之前就寫的原本設10點
在剛開始要做HO 時看到掛單量都不大,很且蠻疏的.所以剛開始回測時滑價來回設10點
但HO實際交易半年了,實際滑價其實沒有想像中大,來回+手續費設6點就夠了.
(很多細節真的要實際去跑才會發現問題)
10檔掛單狀況
圖片 4  
QM 設定
圖片 1  
 
交易時間:
18:00~17:15 (主要交易時間 0900~1430)
結算日:最後一個工作日
提前換倉日:最後8~10個工作日(遠月量比近月多的日期大概是這幾天)
HO 在非主要交易時段成交量非常小,且價格都不太會動,我做的是當沖所以在QM內直接設定主要交易時段時間
避免非主要交易時段的價格去影響我當日的運算
圖片 7  
 
剛提到會選這商品是因為日內波動幅度很大,以下做一個統計
每年每日(高-低點)&開-收 差值
並把開-收/高-低 得到一個百分比
圖片 2  
  
如果跟台指比較的話,可以發現日內波動是大蠻多的.一些台指上的當沖策略在這行情下應該是可以復活的.
但波動大相對的風險也高,一定要設好停損機制.
另外熱燃油,主要用途是在取暖.當然是冬天使用量較高.雖然有南北半球輪流冬天.
但用量是北半球較多,所以我們會有個疑問?
會不會在北半球夏天時因需求不高造成波動下降呢??
所以再統計一下:
圖片 3  
以統計結果來看是還好,且回測績效每月獲利都蠻平均的.
 
接下來我們用一個簡單的當沖突破策略套在這個商品上.
突破前10根高點進場做多,前10根低點進場放空.
停損點數:價格的千分之2
策略的核心就是突破進場追價,不對反手或停損.只要當天有趨勢就大賺,不對就小賠
(這個商品因為波動大,對一次可以補好幾次不對的)
圖片 5  
 
我覺得不管什麼策略,一定要很清楚了解本身的核心價值,才會知道什麼走勢適合,什麼不適合
或什麼商品特性可以使用.
程式就可以寫出來如下:
圖片 6  
  
回測看看:
圖片 8  
歷史資料來源:eSingnal
使用k棒週期 5分鐘
2010/1~2014/7
圖片 9  
以下看到賺賠比及勝率:
圖片 10  
績效曲線
圖片 11  
因為沒有設什麼濾網,交易次數非常多.可以自己加一些"有意義"的條件去改善囉
進出場訊號:
圖片 12  
 
接下來直接套用在 RB(無鉛汽油) 上
可以看到RB在多空績效差異蠻大的,這策略多空是使用相同參數.可以試著把多空參數分開回測看看
不過如果這樣做記得看一下參數3D圖...
圖片 14  
 
圖片 13  
 
RB 使用這種突破策略在近年來並沒有那麼理想,所以一開始我選擇操作的是HO.
可以把自己的台指當沖策略套入這兩個商品看看,應該可以有不錯的收獲.
 
最後:
附上歷史資料
 資料來源:程式交易
文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()

提到順勢逆勢轉換的方式,在這篇以銅 商品期貨來舉例.

Comex交易所中比較好操作的是黃金,白金,而銅的價格走勢算是最難做的.(個人覺得啦)
(白銀保證金太高,鈀金成交量較小,所以這兩種商品沒有接觸過)
銅的操作上策略可以用到一些小技巧來增加策略靈活度,這裡用到的是順勢逆勢轉換
 
銅的商品簡介在這一篇 有寫到,這裡就不再重覆了
 
策略制定
只在主要交易時段做進場(交易量比較大的區間,其它時間只掛停損或停利單)
進場:
A. 順勢進場:前N根高低點突破
在前N根高低點掛 Stop 單,觸價就進場
 
B.逆勢進場:CCI 震盪指標
當CCI(Len) >100 賣出
當CCI(Len) <-100 買進
 
利用ADX 做為A,或B條件切換
value7 = adx(len1);
value8 = averageFC(value7,len1);
cv=cci(ccilen);
condition1= value7>=value8 ;
當Condition1=true 就跑A 進場條件(順勢)
當Condition1=false 就跑B 進場條件(逆勢)
 
出場:
簡單的移動停損利出場,和之前ES 策略上用到的是一樣的.或可以自己加入喜歡的方式
 
 
回測結果:
K棒週期:15分鐘
時間:2009/1~2014/3 
交易成本:滑價+手續費:來回37元 (3點),不過實際上銅的掛單量很密集滑價很小,這邊成本是多設了一些.
回測資料來源:esignal
我另外跑IQFeed 的歷史資料,結果是差不多的,但esignal或IQfeed 如果是用內建的連續月,差別應在於提前換月的日期,這兩者歷史資料品質都算是很好的,只是兩者資料有時各會漏掉幾天.(5年內)
需要再互相對照,做補齊(但天數不多,所以差別並不大)
 
圖片 8  
 
圖片 9  
 
最近訊號進出場狀況
圖片 10  
 
如果要做金屬期貨建議可以先從黃金或白金著手,在策略開發上會比較容易.
附上銅的歷史資料(來源esignal,修正換月日期問題)

資料來源:程式交易

文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()

會開始記錄一些商品期貨的規格及策略思考過程

自己一個小經驗:開發不同商品策略時,不要一開始就拿策略來套
要先觀察這個商品的特性跟走勢,還有那段時間掛單數少可以避開不要進場(只掛停損)
再去針對這些特性想策略,或找合適的策略.
首先是:銅 (COMEX-紐約金屬交易所)
商品規格
一大點金額: 25000 美元
跳動點: 0.0005
每跳動點金額: 12.5 美元
保證金: 4015美元
目前價格:3.1970
滑價需設:3~5點 (實際交易平均在3點以內,含手續費單邊2.3美元)
交易時間:18:00~隔日:17:15 (當地)
主要交易時間: 2000~隔日1400 (成交量大區,適合短線操作區)
主要交易月份:3,5,7,9,12 
結算日:最後3個工作日
提前換倉日:最後8個工作日
(商品類期貨在接近結算日時,近月都已經沒什麼成交量了,所以要提早換到遠月合約)
 
選這商品原因:
1.短線波動夠大,以目前價格3.1970, 每0.0005 一跳
   等於有15985 個跳動點近10日交易區間高低差平均有210個跳動點
   相較台指.......
2.掛單密集,每檔口數也不少,能減少交易次數放大時被佔掉的滑價成本
 
下圖為主要交易時間(台灣時間的晚上)的掛單數(左圖); 及非主要交易時間(台灣早上)掛單數(右圖)
HG2  HG  
 
商品特性
銅跟其它金屬類期貨相比,短線上算是比較不好做的
觀察可以發現,長週期下是有整段明顯向上或下趨勢,但其中的上下波動很大
機乎很難從頭抱到尾,中間就可能被掃掉.
但短線上也很少有單方向走勢,常常先往一個方向走再掃下來
國外一些交易時間比較長且成交量大的商品都有這種特性
之前提過可以用停損反向做的方式,去捉取另一段的獲利
這裡的銅期貨,使用另一種方式做策略開發.
 
(下圖,銅在長週期下有趨勢,但短線掃盪大)
圖片 1  
 
(下圖,日交易週期內,常常這種上下震盪走勢)
圖片 2  
 
 
利用這種特性,我們可以在圖上畫出一條趨勢線,趨勢線種類很多種,如:均線,前一段週期高低點,SAR,ATR channel,前N日收盤價..等等
看自己習慣用那一種,這裡我用ATR.
於是我們就可以定義,在這趨勢線以下的大方向走勢為空方,反之大方向走勢為多
(下圖,畫出趨勢線)
圖片 4  
 
觀察上圖可以看出,在空方走勢下如往上漲又下跌在這個轉折點放空,短線上都有一段獲利
 
(下圖,轉折放空點)
圖片 5  
 
那要如何定義或表達這個轉折,甚至是做強弱描述呢?
方法有很多種,這裡用震盪指標來做描述 (RSI,CCI,SlowKD,DMI........)
下圖選的是SlowKD 當K值超過70又回落到70是,當成是在空方向裡的強勢轉折
我們可以去試空單,就是大家常說的找反做順啦~
圖片 6  
 
這樣策略就出來了:
在趨勢線以下,如果K值由上往下穿越70,則下根開盤價進場做空.
0.3~0.5% 做停損價
加上一個前n根高低點的簡單移動停利
交易時段收盤前出場.
 
寫成程式後,訊號如下:
作多:
圖片 7  
放空:
 
圖片 10  
 
回測結果:
時間:2009/1 ~2014/2
一口來回成本: 38美元
 
績效結果(單位美元)
圖片 11  
淨值曲線
圖片 12  
這種策略的缺點在於,如果長週期趨勢不明顯,或處於盤整那有可能會一直被巴
所以還是再搭配相關係數低的商品,績效會比較穩定(如搭能源類商品期貨)
當然也可以利用這篇所說的,在績效回落時(盤整區)先停掉或減碼,趨勢出現時再加碼或啟動
 
這種模式適用於蠻多短線震盪大的商品類期貨,有興趣可以套用在其它商品看看
以下提供銅期貨歷史資料 (來源: esignal)
可以試著開發看看,有其它策略想法也歡迎分享
 
QM 設定:
圖片 13  
 圖片 2

資料來源:程式交易

文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()

有些商品較適合逆勢策略,像ES,YM 就是

以下分享一個用在ES上的逆勢策略,也可直接套用在YM


ES這商品在長週期來看還是有大趨勢的,這裡說適合逆勢策略是指:
雖然長線走的是順勢,但在短週期內上下震盪是很大的,導至一些順勢策略很容易在這種

行為上被掃出場
一般趨勢的形成可能會有以下3種走勢,而"第3種"是ES較常出現的走勢,而且上下震盪都

蠻大的,我們就可以利用這個行為慣性來獲利
但ES少部份時間走勢還是會變成第1種和第2種.這時就會賠錢了,但只要把最大風險控制

住就行了.
圖片 1  
接下來,我們就可以利用第3種常發生的走勢來制定策略.
最簡單的方式就是利用震盪指標: RSI,SKD,CCI,DMI....來捉逆勢轉折,當然也可以再配價格轉折( swingHigh,swingLow)
效果會更不錯,這裡我簡單利用CCI 指標做一個策略.
 
圖片1  
 
進場條件:
15分K
兩個參數:1.CCI  週期:Len ; 2. CCI 上下值:+N,-N
當CCI 大於+N 放空
當CCI 小於-N  做多
 
出場條件:
主要:
1.移動停損利
空單出場 :進場後價格創新低時,取 maxlist(h,h[1])*(1+0.007) ,掛STOP 單
多單出場 :進場後價格創新高時,取minlist(l,l[1])*(1-0.007) ,掛STOP 單
 
2.另一邊方向出現時,平倉順便反手.
 
3.進場價的2%停損.
在移動停損利還沒啟動前,做為保護用.
我是進場後過5根k棒才啟動移動停損利機制,也可以寫獲利maxpositionprofit>一定值後啟動
 
 
特別注意:
這裡進場是用 limit
buy next bar at open limit;
因為是做逆勢,掛limit出去的價幾乎都可以進場.但在回測時記得到把這個選項調整成穿價一點才成交
這樣回測不會失真(因為實際有時是觸價會不成交)
圖片2  
 
手續費來回設:5美元
滑價單邊1點,來回2點( es掛單量是很大的)
圖片 2  
 
回測績效結果如下:
K棒週期15分鐘
2008~2014/3
圖片 3  
圖片 4  
圖片 5  
最後一個小技巧:
剛提到出現第1,2種情況時會被一直巴(如下圖),所以可以加入:當被停損時,等個幾根k棒再進場.
圖片 6  
 
以上績效確實是由文章內所說的進出場方式寫成程式跑出來的,再加上最後所提的小技巧
但這個如果有去觀察進出訊號應該可以發現並改進的,或許可以有更好的方法
這策略可以直接套用在YM 上,有興趣可以試試看囉~

附上6年ES歷史資料(IQFeed)


資料來源:程式交易
文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()

picjumbo.com_HNCK3323  

【DDT】( DeepDiscountTrading 極度折扣交易)

  官網:http://www.deepdiscounttrading.com/ 


DDT 能提供如此具殺傷力(競爭性)費用折扣來自於DDT優異平台&服務品質&安全性

【DeepDiscountTrading DDT 安全性】 
 
文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()

【DDT出金】,可以選擇『電匯』或者『支票』



嘗試用【支票】的方式(我總共試了3次).............. 果真還飛了很久的時間才到手,從寄



出到收到將近2~3週。 去銀行兌換支票托收約21天左右可入賬。




還是用電匯比較快。









若用電匯出金:



1.匯入銀行帳號(需開外幣帳戶)



2.提供銀行英文名稱,分行的SWIFT Code



3. DDT 帳號



4.出金金額



以上帳戶資料給Crossland就可以了,至於國內銀行只要只要拼音差不多




(不一定要和護照一樣)也可以入賬嘍~~~








至於銀行托收,土地銀行可以多張算一張的費用(如果有多張金額都小於50 USD時,他會算一



張的中間銀行費用,每一張20 USD),然後郵電費最低收600元台幣。




中信則是最低收400元,富邦好像是800元。




沒想到,入賬時發現竟然沒扣到中間銀行的20美金ㄟ,行員解釋說可能金額太小,『順便』



作,沒收費




用,哈哈~~~





 



















文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()

【下單平台軟體設定】

《Sierra Chart設定》

★當你選擇DDT以Sierra Chart平台下單,你將會收到一封mail介紹如何設定

Sierra Chart

Just below is your
 Sierra Chart (SC) / Trading Technologies (TT) Live Login (Please Save For Your Records).

(建議選擇SC/Rithmic)

*Your Login will Activate by the 5:00 pm (CST芝加哥時間) TT Refresh today

because your data has to Synchronize into the main TT Server.
 
Sierra Set Up Instructions #1 Thru #4 : http://www.sierrachart.com/index.php?l=doc/setup.php

(Step #2 requires you to "Create A Sierra Account" so you can create your personal "Account Name & Password")

(Please type in your TT Login below Carefully & Exactly or else you will not achieve access. Do Not Copy & Paste Your Login. Please Type It In Manually)

Please Study Step #4 Closely To Learn The Trading Platform (Very Important). For CBOT contracts, please select CBOT not CME Gateway.
Step #5 Choose A Sierra Package thru the Forexxin Special (請選擇這裡可以讓你省下SC的費用): http://sierrachart.weebly.com/

 

在SC--->File---->Data / Trade Service Setting
 
(Click On PRICE FEED Tab)
Service: TradingTechnologies
Server: 66.150.104.21:10502
Sender ID: FA-USERXXX
Target ID: TT_PRICE
Password: CHXXXX
 
(Click On ORDERS Tab)
Service: TradingTechnologies
Server: 66.150.104.15:10501
Sender ID: FA-USER241
Target ID: TT_ORDER
Password: CHXXXXXX
Account: FORXXXXX

*SC 384版,
TradingTechnologies = TT FIX

【Sierra Chart中文簡易說明PDF下載Part1】

https://docs.google.com/file/d/0B8BHUAp9_9BVX2lsLVNURmlLcDg/edit?usp=sharing

【SierraChart簡易中文說明書(WorkingWithChart)】

https://docs.google.com/file/d/0B8BHUAp9_9BVNjBGdzc4bnFEOUU/edit?usp=sharing

簡單說明:

1.下載Sierra Chart

2.建立新帳戶密碼(Trial Fee 免費試用15天)

3.登入

4.設定Data/Trade Service Setting

5.連線成功

6.購買SC平台package:http://sierrachart.weebly.com/

7.收到新帳戶密碼(1個月)

8.激活(Activation) SC新帳戶

9.下實單

-----------------------------------------------------------------------------------------------

《CQG設定》

★以下是若用DDT下單在CQG,你會收到一封 Mail關於如何設定CQG

Just below is your CQG Trader Live Login (Please Save For Your Records).
(For CQG Simple users, your Login is automatically set to the Simple features)
Please type your Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
 
Username :
Password :
 
CQG Trader Download & User Guide : http://cqg.com/Support/Getting-Started/CQGT.aspx
 


-----------------------------------------------------------------------------------------------------------------------------------------


《Multichart設定》

★以下是若用DDT下單在Multichart,你會收到一封 Mail關於如何設定MC

Just below is your MultiCharts (MC) / Trading Technologies (TT) Live Login.

*Your Login will Activate by the 5:00 pm (CST) TT Refresh today because your data has to Synchronize into the main TT Server.

Please Make Sure You Download The Latest MultiCharts Version To Help Avoid Any Glitches : http://www.multicharts.com/trading-software-download/

Click on the following link & scroll down to the Trading Technologies Broker Setup & Trading Technologies Data Feed Setup Help Videos : http://www.multicharts.com/multicharts/help/videos/
Please type your TT Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
 
ORDER Connection Settings
Server IP: 66.150.104.15
Password:
Port: 10501
Sender ID:
Target ID: TT_ORDER
 
PRICE Connection Settings
Server IP: 66.150.104.21
Password:
Port: 10502
Sender ID:
Target ID: TT_PRICE

-----------------------------------------------------------------------------------------------------------------------------------------


《Ninjatrader設定》

★以下是若用DDT下單在NinjaTrader,你會收到一封 Mail關於如何設定

 

Just below is your Ninja Trader (NT) / Trading Technologies (TT) Live Login (Please Save For Your Records).
 
*Your Login will Activate by the 5:00 pm( CST) TT Refresh today because your data has to Synchronize into the main TT Server.
 
Most of my clients prefer to place their orders thru the Dynamic SuperDom or thru the Chart Trader for only .15 cents per side (as stated) :http://deepdiscounttrading.com/TradingPlatforms.html
But the Static SuperDom is an optional order placement feature that requires you to pay an additional .10 cents per side thru Transactional TT Credits on the Ninja website :http://www.ninjatrader.com/purchase-transaction-credits.php
*If you have no interest in the Static SuperDom (which is initially pushed on you), then please notify Ninja Support by e-mail to Disable the Static SuperDom for you (so your trading platform can function properly without the Static SuperDom). Your Ninja License Key # will be required to complete the process, so please include it within your e-mail to Ninja Support.
 
Register For Your Live (not Sim) License Key # and insert into your platform : http://www.ninjatrader.com/purchase-lease.php
At the top-left corner of your Control Center, please click on Tools, then Account Connections, and then Add (within the box). Then please type in the following info Carefully & Exactly including your account # or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
Connection name : DeepDiscountTrading
Provider : Trading Technologies
Backup datafeed connection : None
Connect on startup : Do Not Check Or Else You Will Experience Glitches !!
Historical Data : Click "Enabled" (If you lease or own the MultiBroker License)
 
ORDERS
Sender ID:
Target ID: TT_ORDER
Password:
Host: 66.150.104.15
Port: 10501
 
PRICE FEED
Sender ID:
Target ID: TT_PRICE
Password:
Host: 66.150.104.21
Port: 10502
ACCOUNTS:
 
Misc : Do Not Check The Box That Says Demo Mode & Do Not Change Connection Reset Time (unless Ninja Support approves).

After you finish typing all of your info, then please click on File, and then Connect, and then DeepDiscountTrading (to activate the platform).
A Green box should appear in the bottom-left corner that says : Connected To Trading Technologies
文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()


【下單平台軟體設定】

《Sierra Chart設定》
 
★當你選擇DDT以Sierra Chart平台下單,你將會收到一封mail介紹如何設定
Sierra Chart

Just below is your
 Sierra Chart (SC) / Trading Technologies (TT) Live Login (Please Save For Your Records).

(建議選擇SC/Rithmic)
*Your Login will Activate by the 5:00 pm (CST芝加哥時間) TT Refresh today



because your data has to Synchronize into the main TT Server.
Sierra Set Up Instructions #1 Thru #4 : http://www.sierrachart.com/index.php?l=doc/setup.php(Step #2 requires you to "Create A Sierra Account" so you can create your personal "Account Name & Password")
(Please type in your TT Login below Carefully & Exactly or else you will not achieve access. Do Not Copy & Paste Your Login. Please Type It In Manually)
Please Study Step #4 Closely To Learn The Trading Platform (Very Important). For CBOT contracts, please select CBOT not CME Gateway.
Step #5 Choose A Sierra Package thru the Forexxin Special (請選擇這裡可以讓你省下SC的費用): http://sierrachart.weebly.com/



在SC--->File---->Data / Trade Service Setting

(Click On PRICE FEED Tab)
Service: TradingTechnologies
Server: 66.150.104.21:10502
Sender ID: FA-USERXXX
Target ID: TT_PRICE
Password: CHXXXX
(Click On ORDERS Tab)
Service: TradingTechnologies
Server: 66.150.104.15:10501
Sender ID: FA-USER241
Target ID: TT_ORDER
Password: CHXXXXXX
Account: FORXXXXX

*SC 384版,
TradingTechnologies = TT FIX【Sierra Chart中文簡易說明PDF下載Part1】

https://docs.google.com/file/d/0B8BHUAp9_9BVX2lsLVNURmlLcDg/edit?usp=sharing

【SierraChart簡易中文說明書(WorkingWithChart)】

https://docs.google.com/file/d/0B8BHUAp9_9BVNjBGdzc4bnFEOUU/edit?usp=sharing

簡單說明:

1.下載Sierra Chart

2.建立新帳戶密碼(Trial Fee 免費試用15天)

3.登入

4.設定Data/Trade Service Setting

5.連線成功

6.購買SC平台package:http://sierrachart.weebly.com/

7.收到新帳戶密碼(1個月)

8.激活(Activation) SC新帳戶

9.下實單
-----------------------------------------------------------------------------------------------


《CQG設定》
★以下是若用DDT下單在CQG,你會收到一封 Mail關於如何設定CQG


Just below is your CQG Trader Live Login (Please Save For Your Records).

(For CQG Simple users, your Login is automatically set to the Simple features)
Please type your Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
Username :
Password :
CQG Trader Download & User Guide : http://cqg.com/Support/Getting-Started/CQGT.aspx

-----------------------------------------------------------------------------------------------------------------------------------------

《Multichart設定》
★以下是若用DDT下單在Multichart,你會收到一封 Mail關於如何設定MC
Just below is your MultiCharts (MC) / Trading Technologies (TT) Live Login.

*Your Login will Activate by the 5:00 pm (CST) TT Refresh today because your data has to Synchronize into the main TT Server.

Please Make Sure You Download The Latest MultiCharts Version To Help Avoid Any Glitches : http://www.multicharts.com/trading-software-download/

Click on the following link & scroll down to the Trading Technologies Broker Setup & Trading Technologies Data Feed Setup Help Videos : http://www.multicharts.com/multicharts/help/videos/
Please type your TT Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
ORDER Connection Settings

Server IP: 66.150.104.15
Password:
Port: 10501
Sender ID:
Target ID: TT_ORDER
PRICE Connection Settings
Server IP: 66.150.104.21
Password:
Port: 10502
Sender ID:
Target ID: TT_PRICE
-----------------------------------------------------------------------------------------------------------------------------------------

《Ninjatrader設定》
 

★以下是若用DDT下單在NinjaTrader,你會收到一封 Mail關於如何設定


Just below is your Ninja Trader (NT) / Trading Technologies (TT) Live Login (Please Save For Your Records).
*Your Login will Activate by the 5:00 pm( CST) TT Refresh today because your data has to Synchronize into the main TT Server.
Most of my clients prefer to place their orders thru the Dynamic SuperDom or thru the Chart Trader for only .15 cents per side (as stated) :http://deepdiscounttrading.com/TradingPlatforms.html
But the Static SuperDom is an optional order placement feature that requires you to pay an additional .10 cents per side thru Transactional TT Credits on the Ninja website :http://www.ninjatrader.com/purchase-transaction-credits.php
*If you have no interest in the Static SuperDom (which is initially pushed on you), then please notify Ninja Support by e-mail to Disable the Static SuperDom for you (so your trading platform can function properly without the Static SuperDom). Your Ninja License Key # will be required to complete the process, so please include it within your e-mail to Ninja Support.
Register For Your Live (not Sim) License Key # and insert into your platform : http://www.ninjatrader.com/purchase-lease.php
Ninja Support : support@ninjatrader.com
At the top-left corner of your Control Center, please click on Tools, then Account Connections, and then Add (within the box). Then please type in the following info Carefully & Exactly including your account # or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
Connection name : DeepDiscountTrading
Provider : Trading Technologies
Backup datafeed connection : None
Connect on startup : Do Not Check Or Else You Will Experience Glitches !!
Historical Data : Click "Enabled" (If you lease or own the MultiBroker License)
ORDERS
Sender ID:
Target ID: TT_ORDER
Password:
Host: 66.150.104.15
Port: 10501
PRICE FEED
Sender ID:
Target ID: TT_PRICE
Password:
Host: 66.150.104.21
Port: 10502
ACCOUNTS:
Misc : Do Not Check The Box That Says Demo Mode & Do Not Change Connection Reset Time (unless Ninja Support approves).

After you finish typing all of your info, then please click on File, and then Connect, and then DeepDiscountTrading (to activate the platform).
A Green box should appear in the bottom-left corner that says : Connected To Trading Technologies

GoForTrading 發表在 痞客邦 留言(0) 人氣()

photo-1416339134316-0e91dc9ded92  

國外開戶若發生一些緊急狀況如何處理呢?!

前篇已提過,DDT在安全性上的問題,再整理一下分享出來。

另外,大家一定最擔心的是,萬一發生緊急狀況,英文又不好怎麼辦呢?!

通常會造成【萬一】的情況可說少之又少,但無可避免的,還是有萬一的情形發生,這時該

怎麼辦



呢?!(突然斷線、停電.....)

所以,『事前的準備』等緊急狀況發生就不會造成手忙腳亂了。

首先,先想好『可能』會發生的狀況,先把該說的『英文』『背』起來,就沒問題啦!!

到目前為止還未打過一通電話,僅用email溝通一些事情而已,倒是國內還蠻常發生上手發生
問題,無法下單的情形呢!

另外,也是最重要的一件事,也是一項你【必須】養成的習慣,下單同時請同時下好停損單

(Stop order)

,或者是追蹤止損單(Trailing Stop Order),這樣甚至你不小心睡著了,都不會再擔心了。

還有,DDT還提供你可以每日設定最大虧損的金額,只要單日達到設定虧損金額,你就不能

再下新單,也就是可以好好先休息、遠離一下市場,冷靜一下再上場。

許多方式預先設想好,前進海外市場就變得沒什麼可怕的了。

【DDT DeepDiscountTrading&Crossland】提供發生狀況時聯絡窗口


U.S. Day Session :  Generally From 7:00am To 3:15pm(CST)

 

(Please Visit Exchange Websites For Contract Specifications & Holiday Schedules)

 

 

 

Trading Platform Support :  "Contact Your Trading Platform Support Department Directly"

 

 
如果要開通交易新商品,或者出金等,寫mail到這裡
 
Customer Service :  CustomerService@CrosslandLLC.com  Or  1(312)784-0470  
*(For Changing Your Trading Platform Parameters Or For Requesting Funds)
*(Please Include Your Trading Account # & The Name Of Your Trading Platform / Feed)
 
主要是以下這個,確認單子的狀況
 
Trade Desk ( U.S. Day Session) :  1(312)786-2462
*(Trade Desk Is For "Emergency" Back-Up Exits Only)
*(Always Write Down The Name Of The Order-Taker You Spoke To, Ticket #, & Time)
*(Afterwards, Contact Customer Service To Update Your Platform With Your Exit Trade)
*(Reply To The "Risk Manager" Immediately If He Tries To Contact You By Email Or Phone)
 
Trade Desk ( U.S. Night Session) :  Call Your Broker *(For "Emergency" Back-Up Exits Only)
 
Tech Support :  it_group@CrosslandLLC.com  Or  1(312)786-9915 

*(For Position Status, Login Issues, & Error Messages Only - For "Emergency" Back-Up Only)

還有任何問題都可以聯繫DDT Manager Howard,擁有17年經驗,服務非常好。

Howard Lender {Manager / Broker}
National & International : 1-888-407-7918

HowardLender@DeepDiscountTrading.com


[電話播打公式]: 發話國家的國際冠碼 + 受話國家的國碼 + 區域號碼 + 受話方的當地電話號碼


1. 若人是在台灣,要從台灣打國際電話到美國: 
002-1-區域號碼-當地電話號碼.  E.g. 002-1-520-1234567
2.中華電信(009)----費率 0.12 元/6秒
 

Chinese Support 中文服務:letgofortrading@gmail.com

 

GoForTrading 發表在 痞客邦 留言(0) 人氣()

★入金後,DDT會再寄一封email,會逐步教你如何設定下單平台

★以下介紹以Sierra Chart為範例
   

中文簡單說明如下:

1.下載Sierra Chart

2.建立新帳戶密碼(Trial Fee 免費試用15天)

3.登入

4.設定Data/Trade Service Setting

5.連線成功

6.購買SC平台package:http://sierrachart.weebly.com/

7.收到新帳戶密碼(1個月)

8.激活(Activation) SC新帳戶

9.下實單 


【SC介面設定】 



  

Just below is your Sierra Chart (SC) / Trading Technologies (TT) Live Login (Please Save For Your Records).
*Your Login will Activate by the 5:00 pm (CST芝加哥時間) TT Refresh today because your data has to Synchronize into the main TT Server.
Sierra Set Up Instructions #1 Thru #4 : http://www.sierrachart.com/index.php?l=doc/setup.php

 (Step #2 requires you to "Create A Sierra Account" so you can create your personal "Account Name & Password")

(Please type in your TT Login below Carefully & Exactly or else you will not achieve access. Do Not Copy & Paste Your Login. Please Type It In Manually)
Please Study Step #4 Closely To Learn The Trading Platform (Very Important). For CBOT contracts, please select CBOT not CME Gateway.

Step #5 Choose A Sierra Package thru the Forexxin Special (這裡可以讓你省下SC的費用): http://sierrachart.weebly.com/
在SC--->File---->Data / Trade Service Setting

(Click On PRICE FEED Tab)
Service: TradingTechnologies
Server: 66.150.104.21:10502
Sender ID: FA-USERXXX
Target ID: TT_PRICE
Password: CHXXXX
(Click On ORDERS Tab)
Service: TradingTechnologies
Server: 66.150.104.15:10501
Sender ID: FA-USER241
Target ID: TT_ORDER
Password: CHXXXXXX
Account: FORXXXXX
*The TT Server is down when the Exchange is closed. So you will not get a Green connection box at the top-right corner of your trading platform.
But at the top-left corner of your trading platform, if you click on File, and then Disconnect.
Then you will be able to eliminate the constant pop-up box so you can pull-up your Charts for clear viewing during the weekend.
*TT Disclaimer : Carrying rollover positions into the next Electronic Trade Session is NOT fully supported.  IF you hold positions into the next Electronic Trade Session, then open position size, average price, and off-set status may be incorrectly reported. This basically means that your SC / TT platform will Reset itself at the end of each Electronic Trade Session on the contract you are trading. So if you Close all of your open positions within the same Electronic Trade Session, then you will be able to clearly see that all of your Buys & Sells match-up confirming that you are Flat. But IF you should carry an open position into the next Electronic Trade Session, then that open position will Disappear from your trading platform and you will need to close that open position under a slightly different procedureSo For Example; If you carry 1 Buy position into a new Electronic Trade Session, then you will need a Fill on 1 Sell position thru your trading platform to get your account Flat again. Your trading platform will Appear as if your 1 Sell position is still open because it will not automatically match-up to your 1 Buy position from the previous Electronic Trade Session. But your 1 Buy position & 1 Sell position will match-up at the Clearing Firm for your Flat status. Also, your 1 Sell position will eventually clear from your trading platform at the next Electronic Trade Session Reset. As a General Industry Rule, you must always off-set your open positions evenly & properly to achieve Flat status. Even if you get Filled with 1 Buy order thru your trading platform & then get Filled with 1 Sell order thru the Trade Desk, you will still achieve your Flat status that way too because your trades will be even. But please keep in mind that your Fill from the Trade Desk will not appear on your trading platform because the Trade Desk & your trading platform function on two different systems. Furthermore, your SC / TT platform is not able to maintain an account balance for you. Your trading platform is for Trade Executions only. Your Equity statement or RanWeb Login will contain your account balance for you. In the event that your trading platform or computer should ever "Freeze", then do not attempt to submit orders "Continuously" otherwise you will be liable for the mess created. Please ask further questions if you do not fully understand the full process.
-------------------------------------------------------------------------------------------------------
*The name of the back-up tool that allows you to see your positions & balances online during the U.S. Day session only is called the RanWeb system (but please keep in mind that you might get your data instantly or up to 30 minutes delayed or more & the System does not update during the U.S. Night Session & the System is down when the markets are closed) :

Username –  crl.XXX
Old Password –  xlaXXXXX 

(這是用來登入Crossland 後台)

(以下是說明後台的一些瀏覽說明)
To See Your Positions :
Once you log in, then please click on "Inquire".
Then click on "F&O Positions".
Next to Select Report, click on "Summary view by contract".
Next to Account, type in  FORXXXXX  into the big box.
Next to Report,  click on "Open".
On the next page you will see Favorite, in that box type in  FORXXXXX  and then click the "Save" button to avoid doing all these instructions again next time you log in. The next time you log in, you will only need to click the Open button to see your positions.
To See Your Balances :
Once you log in, then please click on "Inquire".
Then click on "Balances".
Next to Account, type in  FORXXXXX  into the big box (If you are maintaining a Foreign Currency in your account too, then please click the drop-down arrow next to Balance Summary, and click on Currency Detail).
Next to Report,  click on "Open".
On the next page you will see Favorite, in that box type in  FORXXXXX  and then click the "Save" button to avoid doing all these instructions again next time you log in. The next time you log in, you will only need to click the Open button to see your balances.
-------------------------------------------------------------------------------------------------------
Margin Policy : Once you carry an open position from "One Electronic Trade Session into a New Electronic Trade Session", then the Exchange requires that you must have the "Full Initial Margin" per contract within your trading account (until you close your position) or else you will receive a Margin Call & also the possibility of your position being Liquidated.
But as long as you Exit your open position just before the End of an Electronic Trade Session, then you will qualify to enter the Next Electronic Trade Session (along with Discounted Intraday Margins) and you must always maintain your trading account balance above $2,000
E-Mini Dow Jones (YM) Globex Trade Session : 5:00pm To 4:15pm (CST) : 45 Minute Close Period : http://www.cmegroup.com/trading/equity-index/us-index/e-mini-dow_contract_specifications.html 
*Please visit the Exchange websites to confirm all Electronic Trading Hours.
If you should get yourself into a Margin Call situation, then the Margin Call amount (required by the Exchange) will appear near the bottom of your Daily Statement.
*Also as a Penalty, the Risk Manager has the discretion to raise your Intraday margin requirement (or he can possibly Close your trading account for any constant problems).
When carrying open positions into the next Electronic Trade Session with the proper Initial margin amount per contract : If your account balance should drop below the Maintenance margin amount per contract, then you would receive a Margin Call requesting to bring your account balance back up to the Initial margin amount per contract again : http://deepdiscounttrading.com/TradingMargins.html
Caution : When trading U.S. contracts during the U.S. Night Session, the Open Interest & Volume (Liquidity) is much lower compared to the U.S. Day Session. So you may experience heavy slippage on your market order or stop order fills, and you may find it very challenging to get your limit orders filled. Please ask further questions if you do not understand all of the above.
--------------------------------------------------------------------------------------------------------
For faster processing & to avoid complications, the Clearing Firm requires that you submit all trading platform parameter requests (such as contract symbols) directly to : CustomerService@CrosslandLLC.com
(Best to submit during the U.S. Day session. Please include your trading account #, the name of your trading platform / feed, & any other specific details related to your request)
--------------------------------------------------------------------------------------------------------
Trading Tip For Your Futures Strategy :  
I personally like to use a 1 To 1 Risk / Reward Ratio. Meaning, I will risk 4 ticks to earn 4 ticks  or  risk 8 ticks to earn 8 ticks (or use any other ratio combination that you feel most comfortable with).
Or if you do not like the idea of having a pre-defined profit target, then you can always use an automatic trailing stop loss order instead. 
I always like to use the Bracket feature on my trading platform that allows me to place my Entry order, Stop Loss order, & Profit Target order simultaneously with just 1 click of a button for ease & speed.
But by always placing a stop loss order, I have been able to manage my risk exposure compared to trading without a stop loss order at all.
When trading without a stop loss order, you may find yourself negative Hundreds to Thousands of Dollars along with both fingers crossed hoping for a bounce-back in the market... 
Risk Management should always be your Rule # 1
Rule # 2 : You must develop a trading strategy that generates more winning trades than losing trades (which takes time) or else you may need to re-consider Trading.

★以下是若用DDT下單在CQG,你會收到一封 Mail關於如何設定CQG

Just below is your CQG Trader Live Login (Please Save For Your Records).

(For CQG Simple users, your Login is automatically set to the Simple features)
Please type your Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
Username :
Password :
CQG Trader Download & User Guide : http://cqg.com/Support/Getting-Started/CQGT.aspx

★以下是若用DDT下單在Multichart,你會收到一封 Mail關於如何設定MC
Just below is your MultiCharts (MC) / Trading Technologies (TT) Live Login.

*Your Login will Activate by the 5:00 pm (CST) TT Refresh today because your data has to Synchronize into the main TT Server.

Please Make Sure You Download The Latest MultiCharts Version To Help Avoid Any Glitches : http://www.multicharts.com/trading-software-download/

Click on the following link & scroll down to the Trading Technologies Broker Setup & Trading Technologies Data Feed Setup Help Videos : http://www.multicharts.com/multicharts/help/videos/
Please type your TT Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
ORDER Connection Settings

Server IP: 66.150.104.15
Password:
Port: 10501
Sender ID:
Target ID: TT_ORDER
PRICE Connection Settings
Server IP: 66.150.104.21
Password:
Port: 10502
Sender ID:
Target ID: TT_PRICE

★以下是若用DDT下單在NinjaTrader,你會收到一封 Mail關於如何設定


Just below is your Ninja Trader (NT) / Trading Technologies (TT) Live Login (Please Save For Your Records).
*Your Login will Activate by the 5:00 pm( CST) TT Refresh today because your data has to Synchronize into the main TT Server.
Most of my clients prefer to place their orders thru the Dynamic SuperDom or thru the Chart Trader for only .15 cents per side (as stated) :http://deepdiscounttrading.com/TradingPlatforms.html
But the Static SuperDom is an optional order placement feature that requires you to pay an additional .10 cents per side thru Transactional TT Credits on the Ninja website :http://www.ninjatrader.com/purchase-transaction-credits.php
*If you have no interest in the Static SuperDom (which is initially pushed on you), then please notify Ninja Support by e-mail to Disable the Static SuperDom for you (so your trading platform can function properly without the Static SuperDom). Your Ninja License Key # will be required to complete the process, so please include it within your e-mail to Ninja Support.
Register For Your Live (not Sim) License Key # and insert into your platform : http://www.ninjatrader.com/purchase-lease.php
Ninja Support : support@ninjatrader.com
At the top-left corner of your Control Center, please click on Tools, then Account Connections, and then Add (within the box). Then please type in the following info Carefully & Exactly including your account # or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
Connection name : DeepDiscountTrading
Provider : Trading Technologies
Backup datafeed connection : None
Connect on startup : Do Not Check Or Else You Will Experience Glitches !!
Historical Data : Click "Enabled" (If you lease or own the MultiBroker License)
ORDERS
Sender ID:
Target ID: TT_ORDER
Password:
Host: 66.150.104.15
Port: 10501
PRICE FEED
Sender ID:
Target ID: TT_PRICE
Password:
Host: 66.150.104.21
Port: 10502
ACCOUNTS:
Misc : Do Not Check The Box That Says Demo Mode & Do Not Change Connection Reset Time (unless Ninja Support approves).

After you finish typing all of your info, then please click on File, and then Connect, and then DeepDiscountTrading (to activate the platform).
A Green box should appear in the bottom-left corner that says : Connected To Trading Technologies
Always Wishing You The Best,
Howard Lender {Manager}
(Please set your Spam Filter to always accept my e-mails)
Chinese Support 中文服務:letgofortrading@gmail.com

GoForTrading 發表在 痞客邦 留言(0) 人氣()

【DDT】( DeepDiscountTrading 極度折扣交易)

  官網:http://www.deepdiscounttrading.com/ 

DDT 能提供如此具殺傷力(競爭性)費用折扣來自於DDT優異平台&服務品質&安全性
【DeepDiscountTrading DDT 安全性】 

  1. 公司的登記與優良評價表現(Elite Trader 國外交易者評價網站)

  2. 開戶結算商Crossland,為美國商品期貨交易委員會(CFTC)登記 
    http://www.cftc.gov/index.htm

    2014 WedBush 購併Crossland,提供更加優異的資金保障、安全以及服務  
  1. 保管投資分離期貨專用帳戶銀行,隸屬於FDIC美國聯邦存款保險公司

    (Federal Deposit Insurance Corporation,簡稱FDIC) http://www.fdic.gov/

    提供25萬美金儲戶保障
  2. 優異下單交易平台 (超過10+ 下單平台可供選擇)

    ex.SierraChart 可依據你的想法新增功能與指標
  3. 【優勢特點】
    1.當沖最低10%保證金(Mini,Micro)
    2.手續費超級便宜到爆。第1口,【立即】最低【雙邊】手續費最低1美元
    3.支援API、多策略閃電下單
    4.入金僅需5000美金【約2口大歐保證金】
    5.報價速度快、準確
    6.平台介面支援程式交易
    7.24hr Online線上開戶
    8.最佳海外外匯期貨商品新手入門首選
    9.能提供如此具殺傷力(競爭性)費用折扣來自於DDT優異平台&服務品質&安全性
    10.【跳動1點獲利】

    【史上最便宜手續費.最低保證金】【Deep Discount Trading開戶流程完整介紹】 
內容僅供參考,本網站不涉及任何經營和推薦,所有內容皆可在網路搜尋,投資前請謹慎評估,本人不負任何責任

GoForTrading 發表在 痞客邦 留言(0) 人氣()







國內手續費 pk DDT手續費
真的是有差ㄋㄟ~~~武器差人家一大截,如何打贏對手(全球)ㄚ!!
【1點獲利】

期貨公會指出,在台灣承作的國外期貨交易量以美盤4,955,634口(占57.98%)居冠,新加坡盤3,066,207口(占35.87%)則居次。
而 2012年國外期貨交易量前5名(經紀市占率),分別為元大寶來期(6023)2,725,309口(31.89%)、群益期 (6024)1,289,822口(15.09%)、凱基期貨1,123,600口(13.15%)、永豐期貨896,948口(10.49%)、統一期 貨891,565口(10.43%)。

★國內外期市佔比:IB盈透約5%、DDT約3%、其他國外經紀商約佔2%、90%為國內經紀商 
 
 
 

GoForTrading 發表在 痞客邦 留言(0) 人氣()




網路上深受許多交易者讚賞的CQG,真的所提供的Data Feed 真的沒話說。

這裡要來介紹最基本的CQG Platform 【CQG Trader】

http://www.cqg.com/Support/Getting-Started/CQGT.aspx

在Menu bar 中,有Setup、View、Orders、News、API、Help

試著逐一簡單介紹,讓初入者可以簡單上手下單,至於更多優異功能,摸熟了就再增加了。

也提供給想要交易新加坡交易所【摩台指】、【A50指數】、【日經225】

CQG代碼:

【摩台指MSCI】ZAA

【A50指數】CN

【日經225】ZNA

登入後,畫面就如上圖。

【CQGTraderQuickRef】簡單功能介紹

https://docs.google.com/file/d/0B8BHUAp9_9BVMEpvbWV3Xzhaa1k/edit?usp=sharing

【Setup】/【Preferences /設定自設畫面】




Menu bar裡有5個設定欄

1.Order&Position Setting (訂單相關設定)

2.Display Configuration
 
     勾選Enable liquidate and reverse buttons

3.Order Placement

    可以選擇是否勾選

     a.Order Ticket Columns

     b.Funtion Buttons

4.Notifications

5.Key Action Help


Training Video:

Overview http://www.cqg.com/Docs/The_CQGTrader_Screen_4-25-08.htm

Trading     http://www.cqg.com/Docs/Trade_with_CQGTrader.htm

CQG可模擬下單的Symbol(商品合約)

Demo systems allow you to access the following tradable symbols:

  • Australian Securities Exchange
    • WAW:  Western Australia Wheat
    • XJO:  Mini S&P/ASX 200 Index
  • Globex 
    • CLE:  Crude Oil
    • DA6:  Australian Dollar
    • EDA:  Eurodollar 3-Month LIBOR
    • EP:  E-Mini S&P 500 Index
    • EU6:  EuroFX
    • GCE:  Gold
    • M6A:  E-Micro AUD/USD
    • M6B:  E-Micro GBP/USD
    • M6C:  E-Micro USD/CAD
    • M6E:  E-Micro EUR/USD
    • M6J:  E-Micro USD/JPY
    • M6S:  E-Micro USD/CHF
    • TYA:  US 10-Year Treasury Note
    • YM:  Dow Jones $5 Mini
    • ZLE:  Soybean Oil
    • ZWA:  Wheat
  • RTS Stock Exchange
    • FSR:  OAO Sberbank Rossii Monthly
  • Sydney Futures Exchange
    • AP:  SFE SPI 200

GoForTrading 發表在 痞客邦 留言(0) 人氣()

★入金後,DDT會再寄一封mail,會逐步教你如何設定下單平台

★以下介紹以Sierra Chart為範例

Just below is your
 Sierra Chart (SC) / Trading Technologies (TT) Live Login (Please Save For Your Records).
 
*Your Login will Activate by the 5:00 pm (CST芝加哥時間) TT Refresh today because your data has to Synchronize into the main TT Server.
 
Sierra Set Up Instructions #1 Thru #4 : http://www.sierrachart.com/index.php?l=doc/setup.php
(Step #2 requires you to "Create A Sierra Account" so you can create your personal "Account Name & Password")
(Please type in your TT Login below Carefully & Exactly or else you will not achieve access. Do Not Copy & Paste Your Login. Please Type It In Manually)
Please Study Step #4 Closely To Learn The Trading Platform (Very Important). For CBOT contracts, please select CBOT not CME Gateway.
Step #5 Choose A Sierra Package thru the Forexxin Special (這裡可以讓你省下SC的費用): http://sierrachart.weebly.com/
 

在SC--->File---->Data / Trade Service Setting
 
(Click On PRICE FEED Tab)
Service: TradingTechnologies
Server: 66.150.104.21:10502
Sender ID: FA-USERXXX
Target ID: TT_PRICE
Password: CHXXXX
 
(Click On ORDERS Tab)
Service: TradingTechnologies
Server: 66.150.104.15:10501
Sender ID: FA-USER241
Target ID: TT_ORDER
Password: CHXXXXXX
Account: FORXXXXX
 
*The TT Server is down when the Exchange is closed. So you will not get a Green connection box at the top-right corner of your trading platform.
But at the top-left corner of your trading platform, if you click on File, and then Disconnect.
Then you will be able to eliminate the constant pop-up box so you can pull-up your Charts for clear viewing during the weekend.
 
*TT Disclaimer : Carrying rollover positions into the next Electronic Trade Session is NOT fully supported.  IF you hold positions into the next Electronic Trade Session, then open position size, average price, and off-set status may be incorrectly reported. This basically means that your SC / TT platform will Reset itself at the end of each Electronic Trade Session on the contract you are trading. So if you Close all of your open positions within the same Electronic Trade Session, then you will be able to clearly see that all of your Buys & Sells match-up confirming that you are Flat. But IF you should carry an open position into the next Electronic Trade Session, then that open position will Disappear from your trading platform and you will need to close that open position under a slightly different procedureSo For Example; If you carry 1 Buy position into a new Electronic Trade Session, then you will need a Fill on 1 Sell position thru your trading platform to get your account Flat again. Your trading platform will Appear as if your 1 Sell position is still open because it will not automatically match-up to your 1 Buy position from the previous Electronic Trade Session. But your 1 Buy position & 1 Sell position will match-up at the Clearing Firm for your Flat status. Also, your 1 Sell position will eventually clear from your trading platform at the next Electronic Trade Session Reset. As a General Industry Rule, you must always off-set your open positions evenly & properly to achieve Flat status. Even if you get Filled with 1 Buy order thru your trading platform & then get Filled with 1 Sell order thru the Trade Desk, you will still achieve your Flat status that way too because your trades will be even. But please keep in mind that your Fill from the Trade Desk will not appear on your trading platform because the Trade Desk & your trading platform function on two different systems. Furthermore, your SC / TT platform is not able to maintain an account balance for you. Your trading platform is for Trade Executions only. Your Equity statement or RanWeb Login will contain your account balance for you. In the event that your trading platform or computer should ever "Freeze", then do not attempt to submit orders "Continuously" otherwise you will be liable for the mess created. Please ask further questions if you do not fully understand the full process.
 
-------------------------------------------------------------------------------------------------------
 
*The name of the back-up tool that allows you to see your positions & balances online during the U.S. Day session only is called the RanWeb system (but please keep in mind that you might get your data instantly or up to 30 minutes delayed or more & the System does not update during the U.S. Night Session & the System is down when the markets are closed) :
 
 
Username –  crl.XXX
Old Password –  xlaXXXXX
 
To See Your Positions :
 
Once you log in, then please click on "Inquire".
 
Then click on "F&O Positions".
 
Next to Select Report, click on "Summary view by contract".
 
Next to Account, type in  FORXXXXX  into the big box.
 
Next to Report,  click on "Open".
 
On the next page you will see Favorite, in that box type in  FORXXXXX  and then click the "Save" button to avoid doing all these instructions again next time you log in. The next time you log in, you will only need to click the Open button to see your positions.
 
To See Your Balances :
 
Once you log in, then please click on "Inquire".
 
Then click on "Balances".
 
Next to Account, type in  FORXXXXX  into the big box (If you are maintaining a Foreign Currency in your account too, then please click the drop-down arrow next to Balance Summary, and click on Currency Detail).
 
Next to Report,  click on "Open".
 
On the next page you will see Favorite, in that box type in  FORXXXXX  and then click the "Save" button to avoid doing all these instructions again next time you log in. The next time you log in, you will only need to click the Open button to see your balances.
 
-------------------------------------------------------------------------------------------------------
 
Margin Policy : Once you carry an open position from "One Electronic Trade Session into a New Electronic Trade Session", then the Exchange requires that you must have the "Full Initial Margin" per contract within your trading account (until you close your position) or else you will receive a Margin Call & also the possibility of your position being Liquidated.
 
But as long as you Exit your open position just before the End of an Electronic Trade Session, then you will qualify to enter the Next Electronic Trade Session (along with Discounted Intraday Margins) and you must always maintain your trading account balance above $2,000
 
E-Mini Dow Jones (YM) Globex Trade Session : 5:00pm To 4:15pm (CST) : 45 Minute Close Period : http://www.cmegroup.com/trading/equity-index/us-index/e-mini-dow_contract_specifications.html 
 
*Please visit the Exchange websites to confirm all Electronic Trading Hours.
 
If you should get yourself into a Margin Call situation, then the Margin Call amount (required by the Exchange) will appear near the bottom of your Daily Statement.
 
*Also as a Penalty, the Risk Manager has the discretion to raise your Intraday margin requirement (or he can possibly Close your trading account for any constant problems).
 
When carrying open positions into the next Electronic Trade Session with the proper Initial margin amount per contract : If your account balance should drop below the Maintenance margin amount per contract, then you would receive a Margin Call requesting to bring your account balance back up to the Initial margin amount per contract again : http://deepdiscounttrading.com/TradingMargins.html
 
Caution : When trading U.S. contracts during the U.S. Night Session, the Open Interest & Volume (Liquidity) is much lower compared to the U.S. Day Session. So you may experience heavy slippage on your market order or stop order fills, and you may find it very challenging to get your limit orders filled. Please ask further questions if you do not understand all of the above.
 
--------------------------------------------------------------------------------------------------------
 
For faster processing & to avoid complications, the Clearing Firm requires that you submit all trading platform parameter requests (such as contract symbols) directly to : CustomerService@CrosslandLLC.com
 
(Best to submit during the U.S. Day session. Please include your trading account #, the name of your trading platform / feed, & any other specific details related to your request)
 
--------------------------------------------------------------------------------------------------------
 
Trading Tip For Your Futures Strategy :  
 
I personally like to use a 1 To 1 Risk / Reward Ratio. Meaning, I will risk 4 ticks to earn 4 ticks  or  risk 8 ticks to earn 8 ticks (or use any other ratio combination that you feel most comfortable with).
 
Or if you do not like the idea of having a pre-defined profit target, then you can always use an automatic trailing stop loss order instead. 
 
I always like to use the Bracket feature on my trading platform that allows me to place my Entry order, Stop Loss order, & Profit Target order simultaneously with just 1 click of a button for ease & speed.
 
But by always placing a stop loss order, I have been able to manage my risk exposure compared to trading without a stop loss order at all.
 
When trading without a stop loss order, you may find yourself negative Hundreds to Thousands of Dollars along with both fingers crossed hoping for a bounce-back in the market... 
 
Risk Management should always be your Rule # 1
 
Rule # 2 : You must develop a trading strategy that generates more winning trades than losing trades (which takes time) or else you may need to re-consider Trading.
 

Always Wishing You The Best,
Howard Lender {Manager}

(Please set your Spam Filter to always accept my e-mails)

 

 

★以下是若用DDT下單在CQG,你會收到一封 Mail關於如何設定CQG

 

Just below is your CQG Trader Live Login (Please Save For Your Records).

 

(For CQG Simple users, your Login is automatically set to the Simple features)
Please type your Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
 
Username :
Password :
 
CQG Trader Download & User Guide : http://cqg.com/Support/Getting-Started/CQGT.aspx
 

 

 

 

★以下是若用DDT下單在Multichart,你會收到一封 Mail關於如何設定MC

 

Just below is your MultiCharts (MC) / Trading Technologies (TT) Live Login.

 

*Your Login will Activate by the 5:00 pm (CST) TT Refresh today because your data has to Synchronize into the main TT Server.

Please Make Sure You Download The Latest MultiCharts Version To Help Avoid Any Glitches : http://www.multicharts.com/trading-software-download/

Click on the following link & scroll down to the Trading Technologies Broker Setup & Trading Technologies Data Feed Setup Help Videos : http://www.multicharts.com/multicharts/help/videos/
Please type your TT Login Carefully & Exactly or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
 
ORDER Connection Settings
Server IP: 66.150.104.15
Password:
Port: 10501
Sender ID:
Target ID: TT_ORDER
 
PRICE Connection Settings
Server IP: 66.150.104.21
Password:
Port: 10502
Sender ID:
Target ID: TT_PRICE

 

 

 

★以下是若用DDT下單在NinjaTrader,你會收到一封 Mail關於如何設定

 

 

 

Just below is your Ninja Trader (NT) / Trading Technologies (TT) Live Login (Please Save For Your Records).

 

 

 

*Your Login will Activate by the 5:00 pm( CST) TT Refresh today because your data has to Synchronize into the main TT Server.

 

 

 

Most of my clients prefer to place their orders thru the Dynamic SuperDom or thru the Chart Trader for only .15 cents per side (as stated) :http://deepdiscounttrading.com/TradingPlatforms.html
But the Static SuperDom is an optional order placement feature that requires you to pay an additional .10 cents per side thru Transactional TT Credits on the Ninja website :http://www.ninjatrader.com/purchase-transaction-credits.php
*If you have no interest in the Static SuperDom (which is initially pushed on you), then please notify Ninja Support by e-mail to Disable the Static SuperDom for you (so your trading platform can function properly without the Static SuperDom). Your Ninja License Key # will be required to complete the process, so please include it within your e-mail to Ninja Support.
 
Register For Your Live (not Sim) License Key # and insert into your platform : http://www.ninjatrader.com/purchase-lease.php
At the top-left corner of your Control Center, please click on Tools, then Account Connections, and then Add (within the box). Then please type in the following info Carefully & Exactly including your account # or else you will not achieve access (Do Not Copy & Paste Your Login. Please Type It In Manually) :
Connection name : DeepDiscountTrading
Provider : Trading Technologies
Backup datafeed connection : None
Connect on startup : Do Not Check Or Else You Will Experience Glitches !!
Historical Data : Click "Enabled" (If you lease or own the MultiBroker License)
 
ORDERS
Sender ID:
Target ID: TT_ORDER
Password:
Host: 66.150.104.15
Port: 10501
 
PRICE FEED
Sender ID:
Target ID: TT_PRICE
Password:
Host: 66.150.104.21
Port: 10502
ACCOUNTS:
 
Misc : Do Not Check The Box That Says Demo Mode & Do Not Change Connection Reset Time (unless Ninja Support approves).

After you finish typing all of your info, then please click on File, and then Connect, and then DeepDiscountTrading (to activate the platform).
A Green box should appear in the bottom-left corner that says : Connected To Trading Technologies

 

GoForTrading 發表在 痞客邦 留言(0) 人氣()

繼前一篇開戶流程介紹,接下來繼續介紹說明後續步驟。

當完成DDT 【DeepDiscountTrading】

http://www.deepdiscounttrading.com/TradingAccount.html

你將會在24hr內收到以下的mail通知,以及一份夾檔"Trading Account Info"

 Welcome Aboard,
Thank You for submitting your account application.
 You have been 
"Pre-Approved". Once we receive a clear copy of your Photo ID (Non-Expired Drivers License or Passport), then your "Final Approval" will be issued. If you have the ability to "Scan & E-mail" your ID, then please forward it to me directly. Please click on the attachment for your "Trading Account Info" document. Please print it out & keep it next to your computer because it contains your Trading Account #, Wiring Instructions, & other Important information to reach the "Trade Desk" for Emergency back-up. Based on your initial investment amount, we will need to confirm your answers to the following platform parameter questions before you fund your trading account :

(以下是需要回覆的項目唷~~~~列舉回覆答案在下面說明)
Which Trading Platform / Feed are you interested in ?
For "Risk Management" reasons, which specific Contract Symbols do you plan on actually trading ? (You can modify your request anytime)
Will you be trading Futures or Options or Both ?
Will you be Day Trading or Position Trading or Both ?
What is the Maximum # of contracts that you would trade on any given "Order" ?
What amount do you plan on funding your trading account with ? 
How did you Originally hear about us ?
 
Also depending on the Trading Platform / Feed you choose, the Clearing Firm may have a "Risk Management" feature attached to your Trading Platform / Feed called "Maximum Loss Per Day" for your Protection & for the Protection of the Clearing Firm. Once you completely Exit a trade after you hit your chosen dollar loss amount for the day (Flat with No Working orders), then no new orders can be submitted thru your trading platfrom for the day (but please keep in mind that your open position will not automatically close out once you hit your chosen dollar loss amount for the day, so you must always manage your open position properly).What would you like your Daily Dollar Loss amount to be set at ?  (You can set your daily dollar loss amount to be as little or as large as you like within 30% of your trading account balance & you can always have it adjusted anytime you like)
 
*(Attention Non-U.S. Foreign Traders : Some Banks charge their customers a hidden "Intermediary Bank Fee" for International wires without disclosing this fee to their customers. So please increase your wire amount by $50 if you plan to submit the exact account minimum in order to avoid complications with the Clearing Firm. Please verify & confirm all wiring fees with your Bank to avoid any Surprises)
 
 
 
 
 
 
I will always be your Account Executive in the background to help you get set up and to make sure that you are being serviced Fast & Efficiently. I have been a Licensed Series 3 Commodity Broker for over 17 years Specializing in Online Trading & I also trade my own personal account. So if you should have any "General" trading questions, then I can answer most questions from my personal experience. Also, I tell all my clients; "IF you are not 100% Happy with our Service, then I will Close Out your account instantly with no delays, hassles, or penalties". Please feel free to contact me anytime with any questions or concerns (days, nights, or weekends).
Howard Lender {Manager}
(Please set your Spam Filter to always accept my e-mails) 

--------------------------------------------------------------------------------------
 
*收到這封信,接下來你必須要做的是
 
1.掃描你的身份證或護照
 
2.email回傳身份證或護照
 
3.完成"Final Approval" 
 
4.列印下夾檔說明文件(裡頭有匯款相關資訊)
 
5.回覆幾個問題
   
   a.Which Trading Platform / Feed are you interested in ? 
      (哪個交易下單平台你有興趣的?!)
       Ans:
 
       選擇Sierra Chart(如果你想交易歐元、澳幣、輕原油、黃金、Mini-S&P...)
       選擇CQG                (如果你想交易摩台指)
 
   b.For "Risk Management" reasons, which specific Contract Symbols do you plan on actually
       trading ? (You can modify your request anytime)
       (你計畫交易哪些商品合約,隨時都可以提出申請,申請開通了才能下單交)
        Ans:
 
        Eu歐元、Au澳幣、CL輕原油、GOLD黃金、Mini-S&P...
 
   c.Will you be trading Futures or Options or Both ?
       (交易期貨或選擇權)
        Ans:
 
        兩者(Both)

   d.
Will you be Day Trading or Position Trading or Both ?
      (以當沖,還是留倉交易)
       Ans:
 
        兩者(Both)
    e.What is the Maximum # of contracts that you would trade on any given "Order" ?
        (何種期貨商品合約你會交易最多呢)
         Ans:
              
                 隨便寫一下,當然適中大小即可。Eu currency , 20 Lot/day
 
    f.What amount do you plan on funding your trading account with ? 
      (計畫入金多少)
      Ans:
              
                 3000 USD
  

e.How did you Originally hear about us ?
         (如何得知DDT)
         Ans:
 
                  制式回答。Network,friend........
    
附夾上你的身份證ID或護照..............完成了
 
另外的特點是,你可以自行設定每天(每筆)最大虧損金額或%,藉以控制風險。
 
*再來就是匯款嘍~~~~~
 
附件夾檔
 

"Trading Account Info"

 

Your Trading Account # & TitleFORxxxxx  (Customer's Name) 這是你的帳戶 

*(Always Double-Check Your Commissions On Your Equity Statement Sent To You By E-mail)

*(Always Double-Check Your Positions On Your Equity Statement To Avoid Any Surprises)

*(Always Save Your Monthly Equity Statements For Past Reference & For Tax Purposes)

*(Always Keep A Manual Record Of All Your Trades In Case Of Any Internet Disconnection)

*(Please Set Your Spam Box To Accept E-Mails From DeepDiscountTrading & Crossland)

 

(銀行匯款資料在這............)

 

如果你不會匯的話,印出來,然後拿去銀行請行員幫你填就可以了。

 

最後記得在備註欄裡寫上你的,FORxxxxx  (Customer's Name)(上面有)

 

等待幾天後,你就可以開始下單嘍~~~~~~~~

 

簡單吧!!!

 

電匯可以選擇富邦銀行,全額到只要540元就可以了。

 

有任何問題都可以寫mail 給DDT 的Manager Howard,回覆速度很快唷。

 

 

 

Bank Wire Instructions :  *(Your Bank Account Title Must Match Your Trading Account Title)

 

1.) Fifth Third Bank (Headquarters)

     38 Fountain Square Plaza

     Cincinnati , OH . 45202

     1(866)475-0729

     ABA # 042000314

     *International Wires, Include Swift Code : FTBCUS3C (For USD Funds Only)

2.) Credit To :  Crossland Customer Segregated Account # 7236529363

     141 West Jackson Blvd., Suite # 1710 - A

     Chicago , IL . 60604

3.) Further Credit To :  Your Trading Account # & Title (You Must Be The Wire Sender)

 

 

U.S. Day Session :  Generally From 7:00am To 3:15pm(CST)

(Please Visit Exchange Websites For Contract Specifications & Holiday Schedules)

 

Trading Platform Support :  "Contact Your Trading Platform Support Department Directly"

 

Customer Service :  CustomerService@CrosslandLLC.com  Or  1(312)784-0470  

*(For Changing Your Trading Platform Parameters Or For Requesting Funds)

*(Please Include Your Trading Account # & The Name Of Your Trading Platform / Feed)

 

Trade Desk ( U.S. Day Session) :  1(312)786-2462

*(Trade Desk Is For "Emergency" Back-Up Exits Only)

*(Always Write Down The Name Of The Order-Taker You Spoke To, Ticket #, & Time)

*(Afterwards, Contact Customer Service To Update Your Platform With Your Exit Trade)

*(Reply To The "Risk Manager" Immediately If He Tries To Contact You By Email Or Phone)

 

Trade Desk ( U.S. Night Session) :  Call Your Broker *(For "Emergency" Back-Up Exits Only)

 

Tech Support :  it_group@CrosslandLLC.com  Or  1(312)786-9915 

*(For Position Status, Login Issues, & Error Messages Only - For "Emergency" Back-Up Only)

 

 

* IF You Are 100% Happy With My Low Commission Rates & Fast Quality Service, Then Please Spread The Good Word About Me To Other Traders.

 

Thank You & Good (Luck / Skill) On All Your Trades !! : )

Howard Lender {Manager / Broker}

National & International : 1-888-407-7918

HowardLender@DeepDiscountTrading.com

 

 

如果一開始申請不過的話(應該是資產、經驗寫得不夠多不夠高),建議可以用不同的英文拼音,然後所

有的資料都要更新。

至於拼音不同會不會造成出金問題,一點都不會,國內銀行只要你拼音差不多,就匯得進來嘍!

另外,需請注意唷~~~~

There is a 45 minute "Close Period" from 4:15pm to 5:00pm (CST).
 
So the Trader must close his open positions just before 4:15pm (CST) for the Intraday session.
 
After 5:00pm (CST), then the Trader can enter the new Intraday session again with low Intraday margins.
 
*But if a Trader carries an open position during the 45 minute "Close Period", then the Exchange requires the full Initial margin per contract to avoid a Margin Call :

也就是台灣時間(日光節約時間)早上AM05:15~AM 6:00"Close Period",當沖交易者一定得在

AM05:15前出掉唷,不然會算成留倉(維持保證金不同),若帳戶不夠可能會被close account,不讓你交易嘍!!

Options 交易牽涉較複雜保證金制度,所以不建議交易

GoForTrading 發表在 痞客邦 留言(0) 人氣()

前篇已提過,DDT在安全性上的問題,再整理一下分享出來。

另外,大家一定最擔心的是,萬一發生緊急狀況,英文又不好怎麼辦呢?!

通常會造成【萬一】的情況可說少之又少,但無可避免的,還是有萬一的情形發生,這時該怎麼辦

呢?!(突然斷線、停電.....)

所以,『事前的準備』等緊急狀況發生就不會造成手忙腳亂了。

首先,先想好『可能』會發生的狀況,先把該說的『英文』『背』起來,就沒問題啦!!

到目前為止還未打過一通電話,僅用email溝通一些事情而已,倒是國內還蠻常發生上手發生問題,無法

下單的情形呢!

另外,也是最重要的一件事,也是一項你【必須】養成的習慣,下單同時請同時下好停損單(Stop order)

,或者是追蹤止損單(Trailing Stop Order),這樣甚至你不小心睡著了,都不會再擔心了。

還有,DDT還提供你可以每日設定最大虧損的金額,只要單日達到設定虧損金額,你就不能再下新單,

也就是可以好好先休息、遠離一下市場,冷靜一下再上場。

許多方式預先設想好,前進海外市場就變得沒什麼可怕的了。

【DDT DeepDiscountTrading&Crossland】提供發生狀況時聯絡窗口

U.S. Day Session :  Generally From 7:00am To 3:15pm(CST)

(Please Visit Exchange Websites For Contract Specifications & Holiday Schedules)

 

Trading Platform Support :  "Contact Your Trading Platform Support Department Directly"

 

如果要開通交易新商品,或者出金等,寫mail到這裡

 

Customer Service :  CustomerService@CrosslandLLC.com  Or  1(312)784-0470  

*(For Changing Your Trading Platform Parameters Or For Requesting Funds)

*(Please Include Your Trading Account # & The Name Of Your Trading Platform / Feed)

 

主要是以下這個,確認單子的狀況

 

Trade Desk ( U.S. Day Session) :  1(312)786-2462

*(Trade Desk Is For "Emergency" Back-Up Exits Only)

*(Always Write Down The Name Of The Order-Taker You Spoke To, Ticket #, & Time)

*(Afterwards, Contact Customer Service To Update Your Platform With Your Exit Trade)

*(Reply To The "Risk Manager" Immediately If He Tries To Contact You By Email Or Phone)

 

Trade Desk ( U.S. Night Session) :  Call Your Broker *(For "Emergency" Back-Up Exits Only)

 

Tech Support :  it_group@CrosslandLLC.com  Or  1(312)786-9915 

*(For Position Status, Login Issues, & Error Messages Only - For "Emergency" Back-Up Only)

 

還有任何問題都可以聯繫DDT Manager Howard,擁有17年經驗,服務非常好。

Howard Lender {Manager / Broker}

National & International : 1-888-407-7918

HowardLender@DeepDiscountTrading.com

 [電話播打公式]: 發話國家的國際冠碼 + 受話國家的國碼 + 區域號碼 + 受話方的當地電話號碼

 

1. 若人是在台灣,要從台灣打國際電話到美國: 

002-1-區域號碼-當地電話號碼.  E.g. 002-1-520-1234567

2.中華電信(009)----費率 0.12 元/6秒

  

【DDT】 DeepDiscountTrading 極度折扣交易】http://www.deepdiscounttrading.com/ 

能提供如此具殺傷力(競爭性)費用折扣來自於DDT優異平台&服務品質&安全性

 

【DeepDiscountTrading DDT 安全性】 
  1. 公司的登記與優良評價表現
    http://www.elitetrader.com/br/
  2.  能提供如此具殺傷力(競爭性)費用折扣來自於DDT優異平台&服務品質&安全性
  3. 開戶結算商Crossland,為美國商品期貨交易委員會(CFTC)登記 
    http://www.cftc.gov/index.htm 
  4. 保管投資分離期貨專用帳戶銀行,隸屬於FDIC美國聯邦存款保險公司(Federal Deposit Insurance Corporation,簡稱FDIC) 
    http://www.fdic.gov/
    提供25萬美金儲戶保障
  5. 優異下單交易平台
    ex.SierraChart 可依據你的想法新增功能與300多樣指標

【DDT DeepDiscountTrading】開戶結算商Crossland隸屬CME成員

http://www.cmegroup.com/tools-information/clearing...

美國商品期貨協會(NFA)登記監管成員【DDT】 DeepDiscountTrading 極度折扣交易】

http://www.nfa.futures.org/basicnet/SearchResults....

Name NFA ID Current Status
DEEPDISCOUNTTRADING.COM LLC 0415380 
• NFA MEMBER APPROVED 
• INTRODUCING BROKER REGISTERED 

【開戶結算商Crossland】2015 已改為Wedbush

http://www.nfa.futures.org/basicnet/SearchResults....

Name NFA ID Current Status
CROSSLAND LLC 0198022 
• NOTICE BROKER DEALER REGISTERED 
• FUTURES COMMISSION MERCHANT REGISTERED 
• NFA MEMBER APPROVED

【Crossland 為CME、CBOT、NYMEX成員】
http://www.cmegroup.com/tools-information/clearing-firms.html


【DDT】 DeepDiscountTrading 極度折扣交易】http://www.deepdiscounttrading.com/ 



【DeepDiscountTrading DDT 安全性】 
公司的登記與優良評價表現
http://www.elitetrader.com/br/ 
開戶結算商Crossland,為美國商品期貨交易委員會(CFTC)登記 
http://www.cftc.gov/index.htm 
保管投資分離期貨專用帳戶銀行,隸屬於FDIC美國聯邦存款保險公司(Federal Deposit Insurance Corporation,簡稱FDIC) 存戶保障提供25萬美金儲戶保障
http://www.fdic.gov/



美國商品期貨協會(NFA)登記監管成員【DDT】 DeepDiscountTrading 極度折扣交易】

http://www.nfa.futures.org/basicnet/SearchResults....

Name NFA ID Current Status
DEEPDISCOUNTTRADING.COM LLC 0415380 
• NFA MEMBER APPROVED 
• INTRODUCING BROKER REGISTERED 

 

【優勢特點】:
1.手續費超級無敵便宜到爆。第1口,【立即】最低【雙邊】手續費最低1美元
2.當衝最低10%保證金(Mini,Micro)
3.支援API、多策略閃電下單
4.入金僅需3000美金【約1口大歐保證金】
5.報價速度快、準確
6.平台介面支援程式交易
7.24hr Online線上開戶
8.最佳海外外匯期貨商品新手入門首選
9.優異平台&服務品質&安全性
10.【1點立即獲利】

 

★入金門檻讓經紀商(期貨商)篩選不同的客戶群,間接影響的是其中之一是『客戶服務』,其次就是

『交易費用』以及一些『額外費用』。如果不care這個,其實選擇交易費用較低是比較實在的。

因此,我個人比較推存的是DDT,也是我自己使用的平台,除了有史上最低的交易費用外,客戶回應

服務卻也是很不錯的。

文章標籤

GoForTrading 發表在 痞客邦 留言(0) 人氣()





這次【出金】,嘗試用【支票】的方式(我總共試了2次).............. 果真還飛了很久的時間才到手,從寄

出到收到將近2~3週。 

還是用電匯比較快。

我總共試了2次

若用電匯出金,提供你的英文拼音+帳戶資料給Crossland就可以了,至於國內銀行只要只要拼音差不多

(不一定要和護照一樣)也可以入賬嘍~~~

 

最近又來【出金】一次,這次故意有小數點的。(2013/04/15)

這幾次都在土地銀行托收,土地銀行可以多張算一張的費用(如果有多張金額都小於50 USD時,他會算一張的中間銀行費用,每一張20 USD),然後郵電費最低收600元台幣。

中信則是最低收400元,富邦好像是800元

GoForTrading 發表在 痞客邦 留言(0) 人氣()

GoForTrading 發表在 痞客邦 留言(0) 人氣()

從以下的圖示和新聞,可以發現愈來愈多人投身海外廣大的市場。

由於24hr交易時間,讓許多白天上班的人,可以用下班的時間從事金融交易活動。

基於交易成本、交易平台穩定性、交易平台優異性...等等,以及稅務問題因素,讓許多交易者漸漸選擇至

海外期貨商下單交易。

以各期貨商網站統計來看,國內外期市佔比:IB盈透約5%、DDT(DeepDiscountTrading)約3%、其他

國外經紀商約佔2%、90%為國內經紀商

雖然國外經紀商比例看起來不算大,但人數已呈現逐月增加的趨勢,顯見國外經紀商的優異性漸被許多交

易者認同


新聞:
期貨公會:去年國外期貨交易量逆勢成長1.77%
2012年國外期貨交易量為8,547,118口,較 2011年微幅成長1.77%
在台灣承作的國外期貨交易量以美盤4,955,634口(占57.98%)居冠,新加坡盤3,066,207口(占35.87%) 則居次。
★國內外期市佔比:IB盈透約5%、DDT約3%、其他國外經紀商約佔2%、90%為國內經紀商




GoForTrading 發表在 痞客邦 留言(0) 人氣()

Close

您尚未登入,將以訪客身份留言。亦可以上方服務帳號登入留言

請輸入暱稱 ( 最多顯示 6 個中文字元 )

請輸入標題 ( 最多顯示 9 個中文字元 )

請輸入內容 ( 最多 140 個中文字元 )

reload

請輸入左方認證碼:

看不懂,換張圖

請輸入驗證碼