当前位置:网站首页>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 .
Historical statistics :
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 
//-------------------------------------------------------------------------------------------------------------------------------------------------
// 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 :
- New interface design , Will bring a new writing experience ;
- Set your favorite code highlight style in the creative center ,Markdown Highlight the selected style in the code slice display To display ;
- Added Picture drag and drop function , You can drag the local image to the editing area to display it directly ;
- all-new KaTeX The mathematical formula grammar ;
- Added support Gantt chart mermaid grammar 1 function ;
- Added Multi screen editing Markdown Article function ;
- 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 ;
- 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 : 
Picture with size : ![]()
Centered picture : 
A picture centered and dimensioned : ![]()
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
- project
- project 1
- project 2
- 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 :
| TYPE | ASCII | HTML |
|---|---|---|
| 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)=(n−1)!∀n∈N 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)=∫0∞tz−1e−tdt.
You can find more information about LaTeX Mathematical expression here.
New Gantt chart features , Enrich your articles
- About Gantt Chart grammar , Reference resources here ,
UML Chart
have access to UML Chart rendering . Mermaid. For example, a sequence diagram generated below :
This will produce a flowchart .:
- About Mermaid grammar , Reference resources here ,
FLowchart flow chart
We will still support flowchart Flow chart of :
- 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 .
Explanation of footnotes ︎
边栏推荐
- 【ELT.ZIP】OpenHarmony啃论文俱乐部—数据密集型应用内存压缩
- 什么是算子?
- mysql视图讲解
- Current situation and trend analysis of China's glass packaging containers in 2021: the revenue of glass packaging containers increases year by year [figure]
- 2021 development status of China's cloud game industry and analysis of major service providers: Although cloud games are still in their infancy, the market prospect is huge [figure]
- [deeply understand tcapulusdb technology] tmonitor module architecture
- [elt.zip] openharmony paper Club - memory compression for data intensive applications
- JS get data
- solidity获取季度时间
- Solve the problem that sublime Text3 package control cannot install plug-ins
猜你喜欢

GenICam GenTL 标准 ver1.5(1)

03 runtime data area overview and threads

为什么生命科学企业都在陆续上云?

JVM|运行时数据区(堆空间)

初探Oracle全栈虚拟机---GraalVM

Guangzhou Sinovel interactive creates VR Exhibition Hall panoramic online virtual exhibition hall
![Analysis on market scale and supply of China's needle coke industry in 2020 [figure]](/img/79/6b08b62be8768484f548b6e18bd810.jpg)
Analysis on market scale and supply of China's needle coke industry in 2020 [figure]

Tiger Dao VC products are officially launched, a powerful supplement to seektiger ecology
![QQ robot: self forbidden words management of group members [latest beta2 version]](/img/1b/7dcc8ed344c9f62870d76f16b99f1d.png)
QQ robot: self forbidden words management of group members [latest beta2 version]

一晚上做了一个xpath终结者:xpath-helper-plus
随机推荐
两轮市场红海,利尔达芯智行如何乘风破浪?
R language uses the model of DALEX package_ The profile function interprets the relationship between a continuous feature and the target value Y in multiple classification models based on the conditio
Detailed explanation of oauth2 - Introduction (I)
04 program counter (PC register)
Tcp/ip test questions (I)
Sorting out the latest data mining competition scheme!
solidity日期工具
Training of long and difficult sentences in postgraduate entrance examination day90
Apifox simple understanding -- the integrator of web side testing
IDEA常用插件
Comparison rules of strings in JS
Analysis on the market scale and pattern of contrast agents in China in 2021: Jiangsu Hengrui pharmaceutical, general electric, Yangzijiang Pharmaceutical Group, Bayer and bleco account for more than
Redis 5.0 data structure double end linked list source code analysis
158_模型_Power BI 使用 DAX + SVG 打通制作商業圖錶幾乎所有可能
Genicam gentl standard ver1.5 (1)
In 2021, China's private equity market is growing, and the scale of private equity fund management reaches 19.78 trillion yuan [figure]
[today in history] June 25: the father of notebook was born; Windows 98 release; First commercial use of generic product code
QQ机器人疫情查询/疫情关注等【最新beta2版本】
How to quickly close port 8080
一晚上做了一个xpath终结者:xpath-helper-plus