アルゴリズムと機械の外国為替戦略 | OneStepRemoved

  • Articles
  • Sophisticated Web Sites
  • Automated Trading
  • お客様の声
  • お問い合わせ

著作権の問題は、エキスパートアドバイザーをプログラミングするとき

9 月 29, 2011 によって ショーンオバートン 1 コメント

People frequently discover indicators on forums, trading groups, など. Although most are bad, occasionally an indicator looks very promising for generating automated trades. Are you allowed to use the file in an 専門家アドバイザー?

The crux of the matter is what you intend to do with it. Intellectual property (IP) law has a concept called public domain. If you create an indicator and then share it on a public web site, then the file is presumably free for all to use. 本質的に, you give away the copyright when you share it for all to see. The only caveat would be if the file or hosting page places explicit restriction on how the file may or may not be used.

Personal use of an 専門家アドバイザー does not pose a problem. This includes indicators that you purchased. The only legal reason that prevents you from using a commercial indicator in a personal EA is if the purchasing agreement for the indicator forbids creating derivative products, such as using the indicator to build a new EA.

Writing a commercial EA with a public domain custom indicator also meets the hurdle. You cannot take someone else’s work and pass it off as your own; you must substantially alter or improve it before the work becomes yours. Turning an indicator into an automated strategy qualifies as a substantial improvement.

The thorniest issue pops up when you want to use a commercial indicator to create a commercial EA without the permission of the indicator’s owner. Most people, myself included, would call this theft. The only way that you can do this legally and ethically is to secure an agreement from the indicator’s copyright owner.

I am a programmer. If you’re deeply concerned about this issue and want to ensure this information truly reflects US law, then I strongly suggest that you speak with an intellectual property attorney.

Here’s a quick summary:

    Create a private EA from a public domain カスタム インジケーター – Almost always ok, unless the indicator owner forbids it
    Create a private EA from a commercial カスタム インジケーター – generally OK, unless your purchasing agreement forbids it
    Create a commercial EA from a public domain カスタム インジケーター – generally OK, unless the indicator’s creator forbids it
    Create a commercial EA from a commercial インジケーター – never OK, unless you strike an agreement with the copyright owner

以下の下でファイルさ: メタト レーダーのヒント, NinjaTrader ヒント, 戦略の取引のアイデア

一般的なお金の管理の数式

8 月 10, 2011 によって ショーンオバートン 25 コメント

我々 はプログラムで一般に EAs のすべてはお金の管理の 3 つのタイプのいずれかを使用します。. その言葉を好きではない本当に, しかし. 私は信じています。 位置のサイジング式 一般的より正確です。.

オプションは、します。:

  • 固定ロットサイズ
  • 利用可能なマージンの割合を使用します。
  • ストップロスをヒットするたびに、口座の残高の一定割合を失う.

メタト レーダーのほとんどのユーザーは、固定ロットでの使用に慣れている自分 外国為替のお金の管理. それは遠く離れて商業 EAs は、最も一般的な方法. このサイトの動画のいずれかを見たか私に話されています。, 私は一般的にほとんどの市販の Ea の低意見を持っていることを知っています。. 理由だけで誰もがそれはそれはお勧めわけ!

顧客からの注文がリスク入力を使用して彼らのお金の管理の多くのサイズを制御するアイデアを言及するたびに, それは通常選択した利用可能なマージンの比率を使用することを意味します。. 言う, たとえば, あなたが交換を $10,000 上のアカウント 1% マージン (100:1 レバレッジ) 使用し、たいです。 2% ある特定の貿易に利用可能なマージンの. オープン ポジションがあるない場合, 使用する余白は、します。 $10,000 * 2% = $200.

多くのサイズは、次の数式の結果:
たくさん使用する余白を = / 1 ロット当たり必要証拠金

私たちの例に戻る, 単に数字を接続します。:
$200 / $1000 1 ロット当たり (100:1 マージン) = 0.2 たくさん, あります。 2 ミニロット.

MQL4 では、このコードは
double lots = (AccountFreeMargin() * Risk) / MarketInfo( Symbol(), MODE_MARGINREQUIRED);

この方法の利点は、利用可能なマージンで劇的な変化がなければ多くのサイズが変わらないことが. 私は実際に利点としてそれを見ない, しかし、多くのトレーダーのようなほとんどの取引に同じロットサイズを見て.

短所は多数です。. 高を活用し、さまざまな楽器を貿易取引したい場合, あなたは簡単にマージン コールに自分自身を得ることができます。. あなたの戦略は、価格行動に基づいてストップを置くことを呼び出す場合, 失われた量は、停止を配置する場所によって異なります. いくつかの取引を失う可能性があります。 $20 一方、他の人を失う $100.

double lots = Risk * AccountEquity() / MarketInfo(Symbol(), MODE_TICKVALUE) / Stop;

私のお気に入り 外国為替のお金の管理法 私の多くのサイズを選択するに基づいて資産損失私の停止を打つ場合. 私を危険にさらす場合 0.5% で、 $10,000 アカウントと私のストップロス 20 ピップ離れて, 目的の多くのサイズは、します。
たくさん = 0.5% * $10,000 / $10 1 ロット当たり刻み / 20 ピップ = 0.25 たくさん, または 2.5 ミニ たくさん

多くのサイズ減少停止損失の距離が長くなるたびに, その逆. A 60 ピップ停止損失の多くのサイズが必要になります
たくさん = 0.5% * $10,000 / $10 1 ロット当たり刻み / 60 ピップ = 0.083 たくさん, または 0.8 マイクロ 丸めの会計処理後の多く.

多くのさまざまなサイズはほとんどのトレーダー狂気を駆動します。. このような理論的根拠を無視の取引ロジックと思います. 取引統計結果は、します。, 理論的には 0 より大きい純結果を返すイベントの分布. 我々 は日常生活の中でこの利益を呼び出す.

あなたの取引システムは、もし x % 正確より利益率を知る 1, なぜ地球上トレーダーでたらめを賭けて私を超えているすべての貿易のドル量の異なる. 効果はランダムに賭けることを選択することとは異なる $10 このトレードで、 $100 次の. ランダム, あなたの取引システムのための位置のサイズの選択のシステム以下のお金の管理を素敵な圧倒するだろう, 均等に分布を信号から期待しています。.

以下の下でファイルさ: NinjaTrader ヒント, 戦略の取引のアイデア

  • « Previous Page
  • 1
  • …
  • 3
  • 4
  • 5
メールで無料の取引戦略

トレンド分析

申し訳ありませんが. No data so far.

アーカイブ

  • ルール
  • 外国為替市場のしくみ?
  • インジケーター
  • メタト レーダーのヒント
  • MQL (オタクのため)
  • NinjaTrader ヒント
  • Pilum
  • QB プロ
  • お金を失うことを停止します。
  • あなたの概念を歴史的にテストします。
  • 戦略の取引のアイデア
  • 未分類
  • What's happening in the current markets?

翻訳


無料の取引戦略

プライバシー ポリシーRisk Disclosure

著作権 © 2021 OneStepRemoved.com, (株). すべての権利予約.