当前位置:网站首页>Divine reversion EA

Divine reversion EA

2022-06-25 19:03:00 like2026904767

@ God reversed ea– The accuracy of order making is as high as 80%]( Here is the custom directory title )

Welcome to use Markdown Editor

God reversal EA It is not the traditional strategy of adding positions , Instead, it has advanced and innovative tactics . It calculates the accuracy of making orders 75% The above strategy .
 Insert picture description here
Historical statistics :
 Insert picture description here
Historical data settlement sheet :

Opening conditions : The opening condition of the first order opening is to leave... Within the current time frame 144 The position of the moving average deviating from the number of points ( Default , It can be set manually ). If in 144 The point below the period moving average , Then long ; stay 144 The point of departure above the period , Then short . The intention of this opening condition is obvious : Far from the moving average , The probability of price correction is greater , The distance to walk against the trend will be very short , So as to increase the probability of callback profit , Risk reduction .

The advantages of strategy : Far from the moving average , The probability of price correction is greater , The distance to walk against the trend will be very short , So as to increase the probability of callback profit , Risk reduction . Also with overall amount stop loss , You can reduce the risk , This is the paragraph EA Unique place .

Closing conditions :EA Adopted “ Partial liquidation ” The strategy of , That is, to hedge some profit orders against some loss orders , Make a small profit , Instead of waiting until the price is corrected to the overall profit of the account, all the positions will be closed .“ Partial liquidation ” The advantage of our strategy is that we can seize the smallest callback opportunity in the market to reduce our positions , You can also close the position by profit according to the point position .
** Risk point :** Extreme unilateral market ,ea Exceed the set stop loss ,ea Will stop loss automatically
 Insert picture description here

//-------------------------------------------------------------------------------------------------------------------------------------------------
// New buy orders
   TotalBuyOrders = CountOfOrders(MagicNumberBuy);
   if(TotalBuyOrders > 0 && TotalBuyOrders < MaxTrades)
      {
    
         OrderSended = -1;
         LastBuyPrice = FindLastOrderParameter(MagicNumberBuy, "price");
         if(LastBuyPrice - Ask >= GetPipstepForStep(TotalBuyOrders + 1) * vPoint)
            {
    
               BLot   = GetLotForStep(MagicNumberBuy, TotalBuyOrders);
               BComment = StringSubstr(LastOrderComment, 0, StringFind(LastOrderComment, "|", 0)) + "|";
               if(CountOfOrders(MagicNumberBuy) <  Number of additional storeys )
               OrderSended = SendMarketOrder(OP_BUY, BLot, 0, 0, MagicNumberBuy, BComment);
            }
      }
//-------------------------------------------------------------------------------------------------------------------------------------------------
// New sell orders
   TotalSellOrders = CountOfOrders(MagicNumberSell);
   if(TotalSellOrders > 0 && TotalSellOrders < MaxTrades)
      {
    
         OrderSended = -1;
         LastSellPrice = FindLastOrderParameter(MagicNumberSell, "price");
         if(Bid - LastSellPrice >= GetPipstepForStep(TotalSellOrders + 1) * vPoint)
            {
    
               SLot   = GetLotForStep(MagicNumberSell, TotalSellOrders);
               SComment = StringSubstr(LastOrderComment, 0, StringFind(LastOrderComment, "|", 0)) + "|";
               if(CountOfOrders(MagicNumberSell) <  Number of additional storeys )
               OrderSended = SendMarketOrder(OP_SELL, SLot, 0, 0, MagicNumberSell, SComment);
            }
      }
//-------------------------------------------------------------------------------------------------------------------------------------------------
//Move Take Profit
   CheckTakeProfit();
//-------------------------------------------------------------------------------------------------------------------------------------------------
//Check new bar...first orders of the series only according to new bars
   if(TimePrev == Time[0])
      {
    
         return(0);
      }
   TimePrev = Time[0];
   int TradeSignal = GetSignal();
   if(Reverse_Orders)
      {
    
         TradeSignal = -TradeSignal;
      }
// New buy series ...
   if(TotalBuyOrders == 0 && NewTradeBuy && TradeSignal > 0 && (DualTrade == true || TotalSellOrders == 0))
      {
    
         SendMarketOrder(OP_BUY, GetStartLot(), StaticTakeProfit, 0, MagicNumberBuy, TimeCurrent() + "|");
      }
// New sell series ...
   if(TotalSellOrders == 0 && NewTradeSell && TradeSignal < 0 && (DualTrade == true || TotalBuyOrders == 0))
      {
    
         SendMarketOrder(OP_SELL, GetStartLot(), StaticTakeProfit, 0, MagicNumberSell, TimeCurrent() + "|");
      }
   return(0); Insert a code chip here 

Hello ! This is the first time you use Markdown Editor The welcome page shown . If you want to learn how to use Markdown Editor , You can read this article carefully , Get to know Markdown Basic grammar knowledge of .

New changes

We are right. Markdown The editor has some function expansion and syntax support , Except standard Markdown Editor function , We have added the following new features , Help you blog with it :

  1. New interface design , Will bring a new writing experience ;
  2. Set your favorite code highlight style in the creative center ,Markdown Highlight the selected style in the code slice display To display ;
  3. Added Picture drag and drop function , You can drag the local image to the editing area to display it directly ;
  4. all-new KaTeX The mathematical formula grammar ;
  5. Added support Gantt chart mermaid grammar 1 function ;
  6. Added Multi screen editing Markdown Article function ;
  7. Added Focus writing mode 、 Preview Mode 、 Concise writing mode 、 Left and right area synchronous roller settings And so on , The function button is located between the editing area and the preview area ;
  8. Added Checklist function .

Function shortcut

revoke :Ctrl/Command + Z
redo :Ctrl/Command + Y
In bold :Ctrl/Command + B
Italics :Ctrl/Command + I
title :Ctrl/Command + Shift + H
Unordered list :Ctrl/Command + Shift + U
Ordered list :Ctrl/Command + Shift + O
Checklist :Ctrl/Command + Shift + C
Insert code :Ctrl/Command + Shift + K
Insert link :Ctrl/Command + Shift + L
Insert a picture :Ctrl/Command + Shift + G
lookup :Ctrl/Command + F
Replace :Ctrl/Command + G

Create a reasonable title , It's helpful for catalog generation

Direct input 1 Time #, And press space after , Will generate 1 Level title .
Input 2 Time #, And press space after , Will generate 2 Level title .
And so on , We support 6 Level title . Help to use TOC Generate a perfect directory after Syntax .

How to change the style of the text

Emphasis text Emphasis text

Bold text Bold text

Tag text

Delete text

Reference text

H2O is It's liquid .

210 The result is 1024.

Insert links and pictures

link : link.

picture : Alt

Picture with size : Alt

Centered picture : Alt

A picture centered and dimensioned : Alt

Of course , In order to make users more convenient , We've added image drag .

How to insert a beautiful piece of code

Go to Blog settings page , Choose a highlight style you like , Here's the same highlight Code chip .

// An highlighted block
var foo = 'bar';

Generate a list that suits you

  • project
    • project
      • project
  1. project 1
  2. project 2
  3. project 3
  • Planning tasks
  • To complete the task

Create a table

This is how a simple table is created :

project Value
The computer $1600
mobile phone $12
A catheter $1

Set content center 、 be at the left side 、 be at the right

Use :---------: In the middle
Use :---------- be at the left side
Use ----------: be at the right

First column Second column The third column
Center first column of text Second column text right Third column text left

SmartyPants

SmartyPants take ASCII Punctuation character to “ intelligence ” Print punctuation HTML Entity . for example :

TYPEASCIIHTML
Single backticks'Isn't this fun?'‘Isn’t this fun?’
Quotes"Isn't this fun?"“Isn’t this fun?”
Dashes-- is en-dash, --- is em-dash– is en-dash, — is em-dash

Create a custom list

Markdown
Text-to- HTML conversion tool
Authors
John
Luke

How to create a footnote

A text with footnotes .2

Annotation is also essential

Markdown Convert text to HTML.

KaTeX The mathematical formula

You can use rendering LaTeX Mathematical expression KaTeX:

Gamma Formula display Γ ( n ) = ( n − 1 ) ! ∀ n ∈ N \Gamma(n) = (n-1)!\quad\forall n\in\mathbb N Γ(n)=(n1)!nN It's through Euler integral

Γ ( z ) = ∫ 0 ∞ t z − 1 e − t d t   . \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. Γ(z)=0tz1etdt.

You can find more information about LaTeX Mathematical expression here.

New Gantt chart features , Enrich your articles

Mon 06 Mon 13 Mon 20 Completed Have in hand Plan 1 Plan II Existing tasks Adding GANTT diagram functionality to mermaid
  • About Gantt Chart grammar , Reference resources here ,

UML Chart

have access to UML Chart rendering . Mermaid. For example, a sequence diagram generated below :

Zhang San Li Si Wang Wu Hello ! Li Si , How are you ? How are you doing? , Wang Wu ? I'm fine , thank you ! I'm fine , thank you ! Li Si thought for a long time , The text is too long It's not suitable to put it in one line . Looking at Wang Wu ... very good ... Wang Wu , How are you doing? ? Zhang San Li Si Wang Wu

This will produce a flowchart .:

link
Rectangle
round
Rounded rectangle
The diamond
  • About Mermaid grammar , Reference resources here ,

FLowchart flow chart

We will still support flowchart Flow chart of :

Created with Raphaël 2.2.0 Start My operation confirm ? end yes no
  • About Flowchart flow chart grammar , Reference resources here .

Export and import

export

If you want to try this editor , You can edit this article at will . When you finish writing an article , Find... On the top toolbar Article export , Generate a .md Documents or .html File for local storage .

Import

If you want to load an article you've written .md file , In the upper toolbar, you can select the import function to import the file with the corresponding extension ,
Continue your work .


  1. mermaid Syntax description

  2. Explanation of footnotes

原网站

版权声明
本文为[like2026904767]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202190529265427.html