├── .gitattributes
├── .gitignore
├── _PullFromMT4Dev.bat
├── mt4_profile
├── T1_FALCON_F2
│ ├── order.wnd
│ ├── chart01.chr
│ ├── chart13.chr
│ ├── chart02.chr
│ └── chart27.chr
└── T3_FALCON_F2
│ ├── order.wnd
│ ├── chart02.chr
│ ├── chart03.chr
│ ├── chart10.chr
│ ├── chart16.chr
│ ├── chart22.chr
│ ├── chart27.chr
│ ├── chart06.chr
│ ├── chart01.chr
│ ├── chart04.chr
│ ├── chart07.chr
│ ├── chart08.chr
│ ├── chart17.chr
│ ├── chart24.chr
│ ├── chart28.chr
│ ├── chart29.chr
│ ├── chart05.chr
│ ├── chart18.chr
│ ├── chart23.chr
│ ├── chart21.chr
│ ├── chart19.chr
│ ├── chart20.chr
│ ├── chart11.chr
│ ├── chart09.chr
│ ├── chart25.chr
│ └── chart14.chr
├── _PushToMT4Dev.bat
├── _PushToMT4Prod.bat
├── TEST
└── Setup.csv
├── _SetToProd_CleanUp.bat
├── LICENSE
├── README.md
└── PARAMETERS
├── 8139112.set
└── 8139113.set
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | TEST/2018-09-22-Re-Train.csv
3 | TEST/2018-10-06-Re-Train.csv
4 | TEST/2018-10-20-Re-Train.csv
5 | TEST/2018-10-21-Re-Train.csv
6 | TEST/2018-11-04-Re-Train.csv
7 | TEST/2018-11-17-Re-Train.csv
8 | TEST/2018-11-18-Re-Train.csv
9 | TEST/2018-11-25-Re-Train.csv
10 | TEST/2018-12-01-Re-Train.csv
11 | *.csv
12 |
--------------------------------------------------------------------------------
/_PullFromMT4Dev.bat:
--------------------------------------------------------------------------------
1 | rem Script to Sync Files from Development Terminal to Version Control
2 |
3 | @echo off
4 | setlocal enabledelayedexpansion
5 |
6 | :: Source Directory where Expert Advisor is located
7 | set SOURCE_DIR="%PATH_T2_E%\FALCON_F2"
8 | :: Destination Directory where Version Control Repository is located
9 | set DEST_DIR="%PATH_DSS_Repo%\FALCON_F2"
10 |
11 | :: Copy only files with *.mq4 extension
12 | ROBOCOPY %SOURCE_DIR% %DEST_DIR% *.mq4
--------------------------------------------------------------------------------
/mt4_profile/T1_FALCON_F2/order.wnd:
--------------------------------------------------------------------------------
1 | EURUSD,M1
2 | USDCHF,M15
3 | GBPUSD,M15
4 | EURUSD,M15
5 | USDJPY,M15
6 | USDCAD,M15
7 | AUDUSD,M15
8 | EURGBP,M15
9 | EURAUD,M15
10 | EURCHF,M15
11 | EURJPY,M15
12 | GBPCHF,M15
13 | CADJPY,M15
14 | GBPJPY,M15
15 | AUDNZD,M15
16 | AUDCAD,M15
17 | AUDCHF,M15
18 | AUDJPY,M15
19 | CHFJPY,M15
20 | EURNZD,M15
21 | EURCAD,M15
22 | CADCHF,M15
23 | NZDJPY,M15
24 | NZDUSD,M15
25 | GBPAUD,M15
26 | GBPCAD,M15
27 | NZDCHF,M15
28 | GBPNZD,M15
29 | NZDCAD,M15
30 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/order.wnd:
--------------------------------------------------------------------------------
1 | EURUSD,M1
2 | USDCHF,M15
3 | GBPUSD,M15
4 | EURUSD,M15
5 | USDJPY,M15
6 | USDCAD,M15
7 | AUDUSD,M15
8 | EURGBP,M15
9 | EURAUD,M15
10 | EURCHF,M15
11 | EURJPY,M15
12 | GBPCHF,M15
13 | CADJPY,M15
14 | GBPJPY,M15
15 | AUDNZD,M15
16 | AUDCAD,M15
17 | AUDCHF,M15
18 | AUDJPY,M15
19 | CHFJPY,M15
20 | EURNZD,M15
21 | EURCAD,M15
22 | CADCHF,M15
23 | NZDJPY,M15
24 | NZDUSD,M15
25 | GBPAUD,M15
26 | GBPCAD,M15
27 | NZDCHF,M15
28 | GBPNZD,M15
29 | NZDCAD,M15
30 |
--------------------------------------------------------------------------------
/_PushToMT4Dev.bat:
--------------------------------------------------------------------------------
1 | rem Script to Deploy files from Version Control repository to Development Terminal
2 | rem Use in case some content needs to be replaced (reverted from Version Control History)
3 |
4 | @echo off
5 | setlocal enabledelayedexpansion
6 |
7 | :: Source Directory where Version Control Repository is located
8 | set SOURCE_DIR="%PATH_DSS_Repo%\FALCON_F2"
9 | :: Destination Directory where Expert Advisor is located
10 | set DEST_DIR="%PATH_T2_E%\FALCON_F2"
11 |
12 | ROBOCOPY %SOURCE_DIR% %DEST_DIR% *.mq4
13 |
14 |
--------------------------------------------------------------------------------
/_PushToMT4Prod.bat:
--------------------------------------------------------------------------------
1 | rem Script to Deploy files from Version Control repository to All Terminals
2 | rem Use when you need to publish all files to All Terminals
3 |
4 | @echo off
5 | setlocal enabledelayedexpansion
6 |
7 | set SOURCE_DIR="%PATH_DSS_Repo%\FALCON_F2"
8 | set DEST_DIR1="%PATH_T1_E%\FALCON_F2"
9 | set DEST_DIR2="%PATH_T2_E%\FALCON_F2"
10 | set DEST_DIR3="%PATH_T3_E%\FALCON_F2"
11 | set DEST_DIR4="%PATH_T4_E%\FALCON_F2"
12 |
13 | ROBOCOPY %SOURCE_DIR% %DEST_DIR1% *.mq4
14 | ROBOCOPY %SOURCE_DIR% %DEST_DIR2% *.mq4
15 | ROBOCOPY %SOURCE_DIR% %DEST_DIR3% *.mq4
16 | ROBOCOPY %SOURCE_DIR% %DEST_DIR4% *.mq4
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/TEST/Setup.csv:
--------------------------------------------------------------------------------
1 | Pair,Period,Magic
2 | USDCHF,M15,9139126
3 | GBPUSD,M15,9139120
4 | EURUSD,M15,9139114
5 | USDJPY,M15,9139127
6 | USDCAD,M15,9139125
7 | AUDUSD,M15,9139104
8 | EURGBP,M15,9139111
9 | EURAUD,M15,9139108
10 | EURCHF,M15,9139110
11 | EURJPY,M15,9139112
12 | GBPCHF,M15,9139117
13 | CADJPY,M15,9139106
14 | GBPJPY,M15,9139118
15 | AUDNZD,M15,9139103
16 | AUDCAD,M15,9139100
17 | AUDCHF,M15,9139101
18 | AUDJPY,M15,9139102
19 | CHFJPY,M15,9139107
20 | EURNZD,M15,9139113
21 | EURCAD,M15,9139109
22 | CADCHF,M15,9139105
23 | NZDJPY,M15,9139123
24 | NZDUSD,M15,9139124
25 | GBPAUD,M15,9139115
26 | GBPCAD,M15,9139116
27 | NZDCHF,M15,9139122
28 | GBPNZD,M15,9139119
29 | NZDCAD,M15,9139121
30 |
--------------------------------------------------------------------------------
/_SetToProd_CleanUp.bat:
--------------------------------------------------------------------------------
1 | rem Script to prepare robot FALCON_F2 to production
2 | rem IMPORTANT: This script will also clean up all relevant files to start from the beginning
3 | rem To be used to start from the beginning, eventually automate this script to run 1x week on Sunday evening!
4 |
5 | @echo off
6 | setlocal enabledelayedexpansion
7 |
8 |
9 | :: ### TERMINAL 1 ###
10 | :: delete Order Results files
11 | del "%PATH_T1%\OrdersResultsT1.csv" \q
12 | :: delete files with MarketType prediction
13 | del "%PATH_T1%\AI_MarketType_*.csv" \q
14 | :: delete files with MarketType log
15 | del "%PATH_T1%\MarketTypeLog*.csv" \q
16 | :: ### TERMINAL 3 ###
17 | :: delete Order Results files
18 | del "%PATH_T3%\OrdersResultsT3.csv" \q
19 | :: delete files with MarketType prediction
20 | del "%PATH_T3%\AI_MarketType_*.csv" \q
21 | :: delete files with MarketType log
22 | del "%PATH_T3%\MarketTypeLog*.csv" \q
23 | :: delete files with Reinforcement Learning Policy
24 | del "%PATH_T3%\SystemControlMT*.csv" \q
25 |
26 | :: delete control files with extension *.rds
27 | del "%PATH_DSS_Repo%\R_tradecontrol\_RL_MT\control\*.rds" \q
28 |
29 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 vzhomeexperiments
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # FALCON_F2
2 |
3 | ## About
4 |
5 | This is a model based Trading robot. Trading predictions should be generated outside of the MT4 platform. Robot will just interpret those predictions and handle orders executions.
6 |
7 | Repository is also containing several scripts to automate robot deployment across several trading terminals
8 |
9 | # Synchronize or Deploy
10 |
11 | ## Setup Environmental Variables
12 |
13 | Add these User Environmental Variables:
14 |
15 | PATH_T2_E - path to Development Terminal MT4, folder *\MQL4\Experts
16 | PATH_T1_E, PATH_T3_E, etc - paths to the Terminals where all other terminals are located
17 | PATH_DSS_Repo - path to the folder where this repository is stored on the local computer
18 |
19 | *Note* Edit script setupEV.bat to automatically setup such Environmental Variables
20 |
21 | ## Version 1.008
22 |
23 | Add architecture to store ticket numbers and array info into the flat files and update this info on platform restart
24 |
25 | ## Handling Trading Decisions
26 |
27 | ### Entry
28 |
29 | * Predicted future price change exceed the trigger (obtained from the file AI)
30 | Trigger for entry will be obtained from the test results obtained from the file StrTestxxx.csv
31 |
32 | ### Exits
33 |
34 | * Order hit stop loss value
35 | * Order hit take profit value
36 | * Time. Time to hold in Hours will be derived from the strategy test results obtained from the file StrTestxxx.csv
37 |
38 | ## Testing
39 |
40 | ### Sample files shall be placed to the sandbox
41 |
42 | * Place provided files into the sandbox of the terminal (see folder TEST)
43 | * Change values inside files to verify trading logic
44 | * Trade will be executed at the new bar (e.g. use M5 timechart to speed up the test)
45 |
46 | ## Courious how to apply?
47 |
48 | This content is a result of a lot of dedication and time.
49 | Please support this project by joining these courses using referral links published
50 | here: https://vladdsm.github.io/myblog_attempt/topics/topics-my-promotions.html
--------------------------------------------------------------------------------
/PARAMETERS/8139112.set:
--------------------------------------------------------------------------------
1 | Header1=----------EA General Settings-----------
2 | MagicNumber=8139112
3 | TerminalType=1
4 | R_Management=true
5 | Slippage=3
6 | IsECNbroker=false
7 | OnJournaling=false
8 | EnableDashboard=true
9 | Header2=----------Trading Rules Variables -----------
10 | RobotBehavior=daily
11 | usePredictedSL=false
12 | usePredictedTP=false
13 | TimeMaxHoldM1=75
14 | TimeMaxHoldM15=1125
15 | TimeMaxHoldM60=4500
16 | entryTriggerM1=20
17 | entryTriggerM15=50
18 | entryTriggerM60=100
19 | stopLossFactorM1=2.0
20 | stopLossFactorM15=0.8
21 | stopLossFactorM60=0.8
22 | takeProfFactorM1=1.0
23 | takeProfFactorM15=1.0
24 | takeProfFactorM60=1.0
25 | predictor_periodM1=1
26 | predictor_periodM15=15
27 | predictor_periodH1=60
28 | closeAllOnFridays=true
29 | use_market_type=true
30 | Header3=----------Position Sizing Settings-----------
31 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
32 | Lots=0.01
33 | IsSizingOn=false
34 | Risk=1.0
35 | MaxPositionsAllowed=25
36 | Header4=----------TP & SL Settings-----------
37 | UseFixedStopLoss=true
38 | FixedStopLoss=0.0
39 | IsVolatilityStopOn=true
40 | VolBasedSLMultiplier=4.0
41 | UseFixedTakeProfit=true
42 | FixedTakeProfit=0.0
43 | IsVolatilityTakeProfitOn=true
44 | VolBasedTPMultiplier=6.0
45 | Header5=----------Hidden TP & SL Settings-----------
46 | UseHiddenStopLoss=false
47 | FixedStopLoss_Hidden=0.0
48 | IsVolatilityStopLossOn_Hidden=false
49 | VolBasedSLMultiplier_Hidden=0.0
50 | UseHiddenTakeProfit=false
51 | FixedTakeProfit_Hidden=0.0
52 | IsVolatilityTakeProfitOn_Hidden=false
53 | VolBasedTPMultiplier_Hidden=0.0
54 | Header6=----------Breakeven Stops Settings-----------
55 | UseBreakevenStops=false
56 | BreakevenBuffer=0.0
57 | Header7=----------Hidden Breakeven Stops Settings-----------
58 | UseHiddenBreakevenStops=false
59 | BreakevenBuffer_Hidden=0.0
60 | Header8=----------Trailing Stops Settings-----------
61 | UseTrailingStops=false
62 | TrailingStopDistance=0.0
63 | TrailingStopBuffer=0.0
64 | Header9=----------Hidden Trailing Stops Settings-----------
65 | UseHiddenTrailingStops=false
66 | TrailingStopDistance_Hidden=0.0
67 | TrailingStopBuffer_Hidden=0.0
68 | Header10=----------Volatility Trailing Stops Settings-----------
69 | UseVolTrailingStops=false
70 | VolTrailingDistMultiplier=0.0
71 | VolTrailingBuffMultiplier=0.0
72 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
73 | UseHiddenVolTrailing=false
74 | VolTrailingDistMultiplier_Hidden=0.0
75 | VolTrailingBuffMultiplier_Hidden=0.0
76 | Header12=----------Volatility Measurement Settings-----------
77 | atr_period=14
78 | Header13=----------Set Max Loss Limit-----------
79 | IsLossLimitActivated=false
80 | LossLimitPercent=50.0
81 | Header14=----------Set Max Volatility Limit-----------
82 | IsVolLimitActivated=false
83 | VolatilityMultiplier=3.0
84 | ATRTimeframe=60
85 | ATRPeriod=14
86 |
--------------------------------------------------------------------------------
/PARAMETERS/8139113.set:
--------------------------------------------------------------------------------
1 | Header1=----------EA General Settings-----------
2 | MagicNumber=8139113
3 | TerminalType=1
4 | R_Management=true
5 | Slippage=3
6 | IsECNbroker=false
7 | OnJournaling=false
8 | EnableDashboard=true
9 | Header2=----------Trading Rules Variables -----------
10 | RobotBehavior=daily
11 | usePredictedSL=false
12 | usePredictedTP=false
13 | TimeMaxHoldM1=75
14 | TimeMaxHoldM15=1125
15 | TimeMaxHoldM60=4500
16 | entryTriggerM1=20
17 | entryTriggerM15=50
18 | entryTriggerM60=100
19 | stopLossFactorM1=2.0
20 | stopLossFactorM15=0.8
21 | stopLossFactorM60=0.8
22 | takeProfFactorM1=1.0
23 | takeProfFactorM15=1.0
24 | takeProfFactorM60=1.0
25 | predictor_periodM1=1
26 | predictor_periodM15=15
27 | predictor_periodH1=60
28 | closeAllOnFridays=true
29 | use_market_type=true
30 | Header3=----------Position Sizing Settings-----------
31 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
32 | Lots=0.01
33 | IsSizingOn=false
34 | Risk=1.0
35 | MaxPositionsAllowed=25
36 | Header4=----------TP & SL Settings-----------
37 | UseFixedStopLoss=true
38 | FixedStopLoss=0.0
39 | IsVolatilityStopOn=true
40 | VolBasedSLMultiplier=4.0
41 | UseFixedTakeProfit=true
42 | FixedTakeProfit=0.0
43 | IsVolatilityTakeProfitOn=true
44 | VolBasedTPMultiplier=6.0
45 | Header5=----------Hidden TP & SL Settings-----------
46 | UseHiddenStopLoss=false
47 | FixedStopLoss_Hidden=0.0
48 | IsVolatilityStopLossOn_Hidden=false
49 | VolBasedSLMultiplier_Hidden=0.0
50 | UseHiddenTakeProfit=false
51 | FixedTakeProfit_Hidden=0.0
52 | IsVolatilityTakeProfitOn_Hidden=false
53 | VolBasedTPMultiplier_Hidden=0.0
54 | Header6=----------Breakeven Stops Settings-----------
55 | UseBreakevenStops=false
56 | BreakevenBuffer=0.0
57 | Header7=----------Hidden Breakeven Stops Settings-----------
58 | UseHiddenBreakevenStops=false
59 | BreakevenBuffer_Hidden=0.0
60 | Header8=----------Trailing Stops Settings-----------
61 | UseTrailingStops=false
62 | TrailingStopDistance=0.0
63 | TrailingStopBuffer=0.0
64 | Header9=----------Hidden Trailing Stops Settings-----------
65 | UseHiddenTrailingStops=false
66 | TrailingStopDistance_Hidden=0.0
67 | TrailingStopBuffer_Hidden=0.0
68 | Header10=----------Volatility Trailing Stops Settings-----------
69 | UseVolTrailingStops=false
70 | VolTrailingDistMultiplier=0.0
71 | VolTrailingBuffMultiplier=0.0
72 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
73 | UseHiddenVolTrailing=false
74 | VolTrailingDistMultiplier_Hidden=0.0
75 | VolTrailingBuffMultiplier_Hidden=0.0
76 | Header12=----------Volatility Measurement Settings-----------
77 | atr_period=14
78 | Header13=----------Set Max Loss Limit-----------
79 | IsLossLimitActivated=false
80 | LossLimitPercent=50.0
81 | Header14=----------Set Max Volatility Limit-----------
82 | IsVolLimitActivated=false
83 | VolatilityMultiplier=3.0
84 | ATRTimeframe=60
85 | ATRPeriod=14
86 |
--------------------------------------------------------------------------------
/mt4_profile/T1_FALCON_F2/chart01.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131036619907246545
3 | symbol=EURUSD
4 | period=1
5 | leftpos=1109579
6 | digits=5
7 | scale=1
8 | graph=1
9 | fore=1
10 | grid=0
11 | volume=0
12 | scroll=1
13 | shift=1
14 | ohlc=1
15 | one_click=1
16 | one_click_btn=1
17 | askline=0
18 | days=1
19 | descriptions=0
20 | shift_size=20
21 | fixed_pos=0
22 | window_left=0
23 | window_top=0
24 | window_right=527
25 | window_bottom=267
26 | window_type=1
27 | background_color=16777215
28 | foreground_color=0
29 | barup_color=0
30 | bardown_color=0
31 | bullcandle_color=16777215
32 | bearcandle_color=0
33 | chartline_color=0
34 | volumes_color=32768
35 | grid_color=12632256
36 | askline_color=17919
37 | stops_color=17919
38 |
39 |
40 | height=148
41 | fixed_height=0
42 |
43 | name=main
44 |
45 |
46 | name=Alligator
47 | period=13
48 | shift=8
49 | period2=8
50 | shift2=5
51 | period3=5
52 | shift3=3
53 | method=2
54 | apply=4
55 | color=16711680
56 | style=0
57 | weight=1
58 | color2=255
59 | style2=0
60 | weight2=1
61 | color3=65280
62 | style3=0
63 | weight3=1
64 | period_flags=0
65 | show_data=1
66 |
67 |
68 | name=Custom Indicator
69 |
70 | name=SuperSmoother v1.1
71 | flags=275
72 | window_num=0
73 |
74 | AttenuationPeriod=10
75 | Shift=0
76 |
77 |
78 | shift_0=0
79 | draw_0=0
80 | color_0=65280
81 | style_0=0
82 | weight_0=3
83 | period_flags=0
84 | show_data=1
85 |
86 |
87 | name=Fractals
88 | color=8421504
89 | weight=1
90 | period_flags=0
91 | show_data=1
92 |
93 |
94 |
95 |
96 | height=37
97 | fixed_height=0
98 |
99 | name=MACD
100 | fast_ema=12
101 | slow_ema=26
102 | macd_sma=9
103 | apply=0
104 | color=3329330
105 | style=0
106 | weight=1
107 | signal_color=255
108 | signal_style=0
109 | signal_weight=1
110 | levels_color=12632256
111 | levels_style=2
112 | levels_weight=1
113 | level_0=0.00000000
114 | period_flags=0
115 | show_data=1
116 |
117 |
118 |
119 |
120 | height=35
121 | fixed_height=0
122 |
123 | name=Stochastic Oscillator
124 | kperiod=8
125 | dperiod=3
126 | slowing=3
127 | method=0
128 | apply=0
129 | color=3329330
130 | style=0
131 | weight=1
132 | color2=255
133 | style2=0
134 | weight2=1
135 | min=0.00000000
136 | max=100.00000000
137 | levels_color=12632256
138 | levels_style=2
139 | levels_weight=1
140 | level_0=20.00000000
141 | level_1=80.00000000
142 | period_flags=0
143 | show_data=1
144 |
145 |
146 |
147 |
148 | height=50
149 | fixed_height=0
150 |
151 | name=Relative Strength Index
152 | period=13
153 | apply=0
154 | color=3329330
155 | style=0
156 | weight=1
157 | min=0.00000000
158 | max=100.00000000
159 | levels_color=12632256
160 | levels_style=2
161 | levels_weight=1
162 | level_0=30.00000000
163 | level_1=70.00000000
164 | period_flags=0
165 | show_data=1
166 |
167 |
168 | name=Relative Strength Index
169 | period=3
170 | apply=0
171 | color=255
172 | style=0
173 | weight=1
174 | min=0.00000000
175 | max=100.00000000
176 | levels_color=12632256
177 | levels_style=2
178 | levels_weight=1
179 | level_0=30.00000000
180 | level_1=70.00000000
181 | period_flags=0
182 | show_data=1
183 |
184 |
185 |
186 |
187 | name=WatchDog
188 | flags=343
189 | window_num=0
190 |
191 | AccountRow=1
192 | DelayMinutes=5
193 |
194 |
195 |
196 |
197 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart02.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133835
3 | comment=Trade is not allowed
4 | symbol=USDCHF
5 | period=15
6 | leftpos=47038
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
46 |
47 |
48 |
49 | name=FALCON_F2\Falcon_F2
50 | flags=343
51 | window_num=0
52 |
53 | Header1=----------EA General Settings-----------
54 | MagicNumber=8139301
55 | TerminalType=0
56 | R_Management=true
57 | Slippage=3
58 | IsECNbroker=false
59 | OnJournaling=false
60 | EnableDashboard=true
61 | Header2=----------Trading Rules Variables -----------
62 | RobotBehavior=daily
63 | usePredictedSL=false
64 | usePredictedTP=false
65 | TimeMaxHoldM1=75
66 | TimeMaxHoldM15=1125
67 | TimeMaxHoldM60=4500
68 | entryTriggerM1=20
69 | entryTriggerM15=50
70 | entryTriggerM60=100
71 | stopLossFactorM1=2.0
72 | stopLossFactorM15=0.8
73 | stopLossFactorM60=0.8
74 | takeProfFactorM1=1.0
75 | takeProfFactorM15=1.0
76 | takeProfFactorM60=1.0
77 | predictor_periodM1=1
78 | predictor_periodM15=15
79 | predictor_periodH1=60
80 | closeAllOnFridays=true
81 | use_market_type=true
82 | Header3=----------Position Sizing Settings-----------
83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
84 | Lots=0.0
85 | IsSizingOn=true
86 | Risk=1.0
87 | MaxPositionsAllowed=1
88 | Header4=----------TP & SL Settings-----------
89 | UseFixedStopLoss=true
90 | FixedStopLoss=0.0
91 | IsVolatilityStopOn=true
92 | VolBasedSLMultiplier=4.0
93 | UseFixedTakeProfit=true
94 | FixedTakeProfit=0.0
95 | IsVolatilityTakeProfitOn=true
96 | VolBasedTPMultiplier=6.0
97 | Header5=----------Hidden TP & SL Settings-----------
98 | UseHiddenStopLoss=false
99 | FixedStopLoss_Hidden=0.0
100 | IsVolatilityStopLossOn_Hidden=false
101 | VolBasedSLMultiplier_Hidden=0.0
102 | UseHiddenTakeProfit=false
103 | FixedTakeProfit_Hidden=0.0
104 | IsVolatilityTakeProfitOn_Hidden=false
105 | VolBasedTPMultiplier_Hidden=0.0
106 | Header6=----------Breakeven Stops Settings-----------
107 | UseBreakevenStops=false
108 | BreakevenBuffer=0.0
109 | Header7=----------Hidden Breakeven Stops Settings-----------
110 | UseHiddenBreakevenStops=false
111 | BreakevenBuffer_Hidden=0.0
112 | Header8=----------Trailing Stops Settings-----------
113 | UseTrailingStops=false
114 | TrailingStopDistance=0.0
115 | TrailingStopBuffer=0.0
116 | Header9=----------Hidden Trailing Stops Settings-----------
117 | UseHiddenTrailingStops=false
118 | TrailingStopDistance_Hidden=0.0
119 | TrailingStopBuffer_Hidden=0.0
120 | Header10=----------Volatility Trailing Stops Settings-----------
121 | UseVolTrailingStops=false
122 | VolTrailingDistMultiplier=0.0
123 | VolTrailingBuffMultiplier=0.0
124 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
125 | UseHiddenVolTrailing=false
126 | VolTrailingDistMultiplier_Hidden=0.0
127 | VolTrailingBuffMultiplier_Hidden=0.0
128 | Header12=----------Volatility Measurement Settings-----------
129 | atr_period=14
130 | Header13=----------Set Max Loss Limit-----------
131 | IsLossLimitActivated=false
132 | LossLimitPercent=50.0
133 | Header14=----------Set Max Volatility Limit-----------
134 | IsVolLimitActivated=false
135 | VolatilityMultiplier=3.0
136 | ATRTimeframe=60
137 | ATRPeriod=14
138 |
139 |
140 |
141 |
142 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart03.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133836
3 | comment=Trade is not allowed
4 | symbol=GBPUSD
5 | period=15
6 | leftpos=50295
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
46 |
47 |
48 |
49 | name=FALCON_F2\Falcon_F2
50 | flags=343
51 | window_num=0
52 |
53 | Header1=----------EA General Settings-----------
54 | MagicNumber=8139302
55 | TerminalType=0
56 | R_Management=true
57 | Slippage=3
58 | IsECNbroker=false
59 | OnJournaling=false
60 | EnableDashboard=true
61 | Header2=----------Trading Rules Variables -----------
62 | RobotBehavior=daily
63 | usePredictedSL=false
64 | usePredictedTP=false
65 | TimeMaxHoldM1=75
66 | TimeMaxHoldM15=1125
67 | TimeMaxHoldM60=4500
68 | entryTriggerM1=20
69 | entryTriggerM15=50
70 | entryTriggerM60=100
71 | stopLossFactorM1=2.0
72 | stopLossFactorM15=0.8
73 | stopLossFactorM60=0.8
74 | takeProfFactorM1=1.0
75 | takeProfFactorM15=1.0
76 | takeProfFactorM60=1.0
77 | predictor_periodM1=1
78 | predictor_periodM15=15
79 | predictor_periodH1=60
80 | closeAllOnFridays=true
81 | use_market_type=true
82 | Header3=----------Position Sizing Settings-----------
83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
84 | Lots=0.0
85 | IsSizingOn=true
86 | Risk=1.0
87 | MaxPositionsAllowed=1
88 | Header4=----------TP & SL Settings-----------
89 | UseFixedStopLoss=true
90 | FixedStopLoss=0.0
91 | IsVolatilityStopOn=true
92 | VolBasedSLMultiplier=4.0
93 | UseFixedTakeProfit=true
94 | FixedTakeProfit=0.0
95 | IsVolatilityTakeProfitOn=true
96 | VolBasedTPMultiplier=6.0
97 | Header5=----------Hidden TP & SL Settings-----------
98 | UseHiddenStopLoss=false
99 | FixedStopLoss_Hidden=0.0
100 | IsVolatilityStopLossOn_Hidden=false
101 | VolBasedSLMultiplier_Hidden=0.0
102 | UseHiddenTakeProfit=false
103 | FixedTakeProfit_Hidden=0.0
104 | IsVolatilityTakeProfitOn_Hidden=false
105 | VolBasedTPMultiplier_Hidden=0.0
106 | Header6=----------Breakeven Stops Settings-----------
107 | UseBreakevenStops=false
108 | BreakevenBuffer=0.0
109 | Header7=----------Hidden Breakeven Stops Settings-----------
110 | UseHiddenBreakevenStops=false
111 | BreakevenBuffer_Hidden=0.0
112 | Header8=----------Trailing Stops Settings-----------
113 | UseTrailingStops=false
114 | TrailingStopDistance=0.0
115 | TrailingStopBuffer=0.0
116 | Header9=----------Hidden Trailing Stops Settings-----------
117 | UseHiddenTrailingStops=false
118 | TrailingStopDistance_Hidden=0.0
119 | TrailingStopBuffer_Hidden=0.0
120 | Header10=----------Volatility Trailing Stops Settings-----------
121 | UseVolTrailingStops=false
122 | VolTrailingDistMultiplier=0.0
123 | VolTrailingBuffMultiplier=0.0
124 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
125 | UseHiddenVolTrailing=false
126 | VolTrailingDistMultiplier_Hidden=0.0
127 | VolTrailingBuffMultiplier_Hidden=0.0
128 | Header12=----------Volatility Measurement Settings-----------
129 | atr_period=14
130 | Header13=----------Set Max Loss Limit-----------
131 | IsLossLimitActivated=false
132 | LossLimitPercent=50.0
133 | Header14=----------Set Max Volatility Limit-----------
134 | IsVolLimitActivated=false
135 | VolatilityMultiplier=3.0
136 | ATRTimeframe=60
137 | ATRPeriod=14
138 |
139 |
140 |
141 |
142 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart10.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133843
3 | comment=Trade is not allowed
4 | symbol=EURCHF
5 | period=15
6 | leftpos=47022
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
46 |
47 |
48 |
49 | name=FALCON_F2\Falcon_F2
50 | flags=343
51 | window_num=0
52 |
53 | Header1=----------EA General Settings-----------
54 | MagicNumber=8139309
55 | TerminalType=0
56 | R_Management=true
57 | Slippage=3
58 | IsECNbroker=false
59 | OnJournaling=false
60 | EnableDashboard=true
61 | Header2=----------Trading Rules Variables -----------
62 | RobotBehavior=daily
63 | usePredictedSL=false
64 | usePredictedTP=false
65 | TimeMaxHoldM1=75
66 | TimeMaxHoldM15=1125
67 | TimeMaxHoldM60=4500
68 | entryTriggerM1=20
69 | entryTriggerM15=50
70 | entryTriggerM60=100
71 | stopLossFactorM1=2.0
72 | stopLossFactorM15=0.8
73 | stopLossFactorM60=0.8
74 | takeProfFactorM1=1.0
75 | takeProfFactorM15=1.0
76 | takeProfFactorM60=1.0
77 | predictor_periodM1=1
78 | predictor_periodM15=15
79 | predictor_periodH1=60
80 | closeAllOnFridays=true
81 | use_market_type=true
82 | Header3=----------Position Sizing Settings-----------
83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
84 | Lots=0.0
85 | IsSizingOn=true
86 | Risk=1.0
87 | MaxPositionsAllowed=1
88 | Header4=----------TP & SL Settings-----------
89 | UseFixedStopLoss=true
90 | FixedStopLoss=0.0
91 | IsVolatilityStopOn=true
92 | VolBasedSLMultiplier=4.0
93 | UseFixedTakeProfit=true
94 | FixedTakeProfit=0.0
95 | IsVolatilityTakeProfitOn=true
96 | VolBasedTPMultiplier=6.0
97 | Header5=----------Hidden TP & SL Settings-----------
98 | UseHiddenStopLoss=false
99 | FixedStopLoss_Hidden=0.0
100 | IsVolatilityStopLossOn_Hidden=false
101 | VolBasedSLMultiplier_Hidden=0.0
102 | UseHiddenTakeProfit=false
103 | FixedTakeProfit_Hidden=0.0
104 | IsVolatilityTakeProfitOn_Hidden=false
105 | VolBasedTPMultiplier_Hidden=0.0
106 | Header6=----------Breakeven Stops Settings-----------
107 | UseBreakevenStops=false
108 | BreakevenBuffer=0.0
109 | Header7=----------Hidden Breakeven Stops Settings-----------
110 | UseHiddenBreakevenStops=false
111 | BreakevenBuffer_Hidden=0.0
112 | Header8=----------Trailing Stops Settings-----------
113 | UseTrailingStops=false
114 | TrailingStopDistance=0.0
115 | TrailingStopBuffer=0.0
116 | Header9=----------Hidden Trailing Stops Settings-----------
117 | UseHiddenTrailingStops=false
118 | TrailingStopDistance_Hidden=0.0
119 | TrailingStopBuffer_Hidden=0.0
120 | Header10=----------Volatility Trailing Stops Settings-----------
121 | UseVolTrailingStops=false
122 | VolTrailingDistMultiplier=0.0
123 | VolTrailingBuffMultiplier=0.0
124 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
125 | UseHiddenVolTrailing=false
126 | VolTrailingDistMultiplier_Hidden=0.0
127 | VolTrailingBuffMultiplier_Hidden=0.0
128 | Header12=----------Volatility Measurement Settings-----------
129 | atr_period=14
130 | Header13=----------Set Max Loss Limit-----------
131 | IsLossLimitActivated=false
132 | LossLimitPercent=50.0
133 | Header14=----------Set Max Volatility Limit-----------
134 | IsVolLimitActivated=false
135 | VolatilityMultiplier=3.0
136 | ATRTimeframe=60
137 | ATRPeriod=14
138 |
139 |
140 |
141 |
142 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart16.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133849
3 | comment=Trade is not allowed
4 | symbol=AUDCAD
5 | period=15
6 | leftpos=47043
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
46 |
47 |
48 |
49 | name=FALCON_F2\Falcon_F2
50 | flags=343
51 | window_num=0
52 |
53 | Header1=----------EA General Settings-----------
54 | MagicNumber=8139315
55 | TerminalType=0
56 | R_Management=true
57 | Slippage=3
58 | IsECNbroker=false
59 | OnJournaling=false
60 | EnableDashboard=true
61 | Header2=----------Trading Rules Variables -----------
62 | RobotBehavior=daily
63 | usePredictedSL=false
64 | usePredictedTP=false
65 | TimeMaxHoldM1=75
66 | TimeMaxHoldM15=1125
67 | TimeMaxHoldM60=4500
68 | entryTriggerM1=20
69 | entryTriggerM15=50
70 | entryTriggerM60=100
71 | stopLossFactorM1=2.0
72 | stopLossFactorM15=0.8
73 | stopLossFactorM60=0.8
74 | takeProfFactorM1=1.0
75 | takeProfFactorM15=1.0
76 | takeProfFactorM60=1.0
77 | predictor_periodM1=1
78 | predictor_periodM15=15
79 | predictor_periodH1=60
80 | closeAllOnFridays=true
81 | use_market_type=true
82 | Header3=----------Position Sizing Settings-----------
83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
84 | Lots=0.0
85 | IsSizingOn=true
86 | Risk=1.0
87 | MaxPositionsAllowed=1
88 | Header4=----------TP & SL Settings-----------
89 | UseFixedStopLoss=true
90 | FixedStopLoss=0.0
91 | IsVolatilityStopOn=true
92 | VolBasedSLMultiplier=4.0
93 | UseFixedTakeProfit=true
94 | FixedTakeProfit=0.0
95 | IsVolatilityTakeProfitOn=true
96 | VolBasedTPMultiplier=6.0
97 | Header5=----------Hidden TP & SL Settings-----------
98 | UseHiddenStopLoss=false
99 | FixedStopLoss_Hidden=0.0
100 | IsVolatilityStopLossOn_Hidden=false
101 | VolBasedSLMultiplier_Hidden=0.0
102 | UseHiddenTakeProfit=false
103 | FixedTakeProfit_Hidden=0.0
104 | IsVolatilityTakeProfitOn_Hidden=false
105 | VolBasedTPMultiplier_Hidden=0.0
106 | Header6=----------Breakeven Stops Settings-----------
107 | UseBreakevenStops=false
108 | BreakevenBuffer=0.0
109 | Header7=----------Hidden Breakeven Stops Settings-----------
110 | UseHiddenBreakevenStops=false
111 | BreakevenBuffer_Hidden=0.0
112 | Header8=----------Trailing Stops Settings-----------
113 | UseTrailingStops=false
114 | TrailingStopDistance=0.0
115 | TrailingStopBuffer=0.0
116 | Header9=----------Hidden Trailing Stops Settings-----------
117 | UseHiddenTrailingStops=false
118 | TrailingStopDistance_Hidden=0.0
119 | TrailingStopBuffer_Hidden=0.0
120 | Header10=----------Volatility Trailing Stops Settings-----------
121 | UseVolTrailingStops=false
122 | VolTrailingDistMultiplier=0.0
123 | VolTrailingBuffMultiplier=0.0
124 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
125 | UseHiddenVolTrailing=false
126 | VolTrailingDistMultiplier_Hidden=0.0
127 | VolTrailingBuffMultiplier_Hidden=0.0
128 | Header12=----------Volatility Measurement Settings-----------
129 | atr_period=14
130 | Header13=----------Set Max Loss Limit-----------
131 | IsLossLimitActivated=false
132 | LossLimitPercent=50.0
133 | Header14=----------Set Max Volatility Limit-----------
134 | IsVolLimitActivated=false
135 | VolatilityMultiplier=3.0
136 | ATRTimeframe=60
137 | ATRPeriod=14
138 |
139 |
140 |
141 |
142 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart22.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133855
3 | comment=Trade is not allowed
4 | symbol=CADCHF
5 | period=15
6 | leftpos=44977
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
46 |
47 |
48 |
49 | name=FALCON_F2\Falcon_F2
50 | flags=343
51 | window_num=0
52 |
53 | Header1=----------EA General Settings-----------
54 | MagicNumber=8139321
55 | TerminalType=0
56 | R_Management=true
57 | Slippage=3
58 | IsECNbroker=false
59 | OnJournaling=false
60 | EnableDashboard=true
61 | Header2=----------Trading Rules Variables -----------
62 | RobotBehavior=daily
63 | usePredictedSL=false
64 | usePredictedTP=false
65 | TimeMaxHoldM1=75
66 | TimeMaxHoldM15=1125
67 | TimeMaxHoldM60=4500
68 | entryTriggerM1=20
69 | entryTriggerM15=50
70 | entryTriggerM60=100
71 | stopLossFactorM1=2.0
72 | stopLossFactorM15=0.8
73 | stopLossFactorM60=0.8
74 | takeProfFactorM1=1.0
75 | takeProfFactorM15=1.0
76 | takeProfFactorM60=1.0
77 | predictor_periodM1=1
78 | predictor_periodM15=15
79 | predictor_periodH1=60
80 | closeAllOnFridays=true
81 | use_market_type=true
82 | Header3=----------Position Sizing Settings-----------
83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
84 | Lots=0.0
85 | IsSizingOn=true
86 | Risk=1.0
87 | MaxPositionsAllowed=1
88 | Header4=----------TP & SL Settings-----------
89 | UseFixedStopLoss=true
90 | FixedStopLoss=0.0
91 | IsVolatilityStopOn=true
92 | VolBasedSLMultiplier=4.0
93 | UseFixedTakeProfit=true
94 | FixedTakeProfit=0.0
95 | IsVolatilityTakeProfitOn=true
96 | VolBasedTPMultiplier=6.0
97 | Header5=----------Hidden TP & SL Settings-----------
98 | UseHiddenStopLoss=false
99 | FixedStopLoss_Hidden=0.0
100 | IsVolatilityStopLossOn_Hidden=false
101 | VolBasedSLMultiplier_Hidden=0.0
102 | UseHiddenTakeProfit=false
103 | FixedTakeProfit_Hidden=0.0
104 | IsVolatilityTakeProfitOn_Hidden=false
105 | VolBasedTPMultiplier_Hidden=0.0
106 | Header6=----------Breakeven Stops Settings-----------
107 | UseBreakevenStops=false
108 | BreakevenBuffer=0.0
109 | Header7=----------Hidden Breakeven Stops Settings-----------
110 | UseHiddenBreakevenStops=false
111 | BreakevenBuffer_Hidden=0.0
112 | Header8=----------Trailing Stops Settings-----------
113 | UseTrailingStops=false
114 | TrailingStopDistance=0.0
115 | TrailingStopBuffer=0.0
116 | Header9=----------Hidden Trailing Stops Settings-----------
117 | UseHiddenTrailingStops=false
118 | TrailingStopDistance_Hidden=0.0
119 | TrailingStopBuffer_Hidden=0.0
120 | Header10=----------Volatility Trailing Stops Settings-----------
121 | UseVolTrailingStops=false
122 | VolTrailingDistMultiplier=0.0
123 | VolTrailingBuffMultiplier=0.0
124 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
125 | UseHiddenVolTrailing=false
126 | VolTrailingDistMultiplier_Hidden=0.0
127 | VolTrailingBuffMultiplier_Hidden=0.0
128 | Header12=----------Volatility Measurement Settings-----------
129 | atr_period=14
130 | Header13=----------Set Max Loss Limit-----------
131 | IsLossLimitActivated=false
132 | LossLimitPercent=50.0
133 | Header14=----------Set Max Volatility Limit-----------
134 | IsVolLimitActivated=false
135 | VolatilityMultiplier=3.0
136 | ATRTimeframe=60
137 | ATRPeriod=14
138 |
139 |
140 |
141 |
142 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart27.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133860
3 | comment=Trade is not allowed
4 | symbol=NZDCHF
5 | period=15
6 | leftpos=44995
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
46 |
47 |
48 |
49 | name=FALCON_F2\Falcon_F2
50 | flags=343
51 | window_num=0
52 |
53 | Header1=----------EA General Settings-----------
54 | MagicNumber=8139326
55 | TerminalType=0
56 | R_Management=true
57 | Slippage=3
58 | IsECNbroker=false
59 | OnJournaling=false
60 | EnableDashboard=true
61 | Header2=----------Trading Rules Variables -----------
62 | RobotBehavior=daily
63 | usePredictedSL=false
64 | usePredictedTP=false
65 | TimeMaxHoldM1=75
66 | TimeMaxHoldM15=1125
67 | TimeMaxHoldM60=4500
68 | entryTriggerM1=20
69 | entryTriggerM15=50
70 | entryTriggerM60=100
71 | stopLossFactorM1=2.0
72 | stopLossFactorM15=0.8
73 | stopLossFactorM60=0.8
74 | takeProfFactorM1=1.0
75 | takeProfFactorM15=1.0
76 | takeProfFactorM60=1.0
77 | predictor_periodM1=1
78 | predictor_periodM15=15
79 | predictor_periodH1=60
80 | closeAllOnFridays=true
81 | use_market_type=true
82 | Header3=----------Position Sizing Settings-----------
83 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
84 | Lots=0.0
85 | IsSizingOn=true
86 | Risk=1.0
87 | MaxPositionsAllowed=1
88 | Header4=----------TP & SL Settings-----------
89 | UseFixedStopLoss=true
90 | FixedStopLoss=0.0
91 | IsVolatilityStopOn=true
92 | VolBasedSLMultiplier=4.0
93 | UseFixedTakeProfit=true
94 | FixedTakeProfit=0.0
95 | IsVolatilityTakeProfitOn=true
96 | VolBasedTPMultiplier=6.0
97 | Header5=----------Hidden TP & SL Settings-----------
98 | UseHiddenStopLoss=false
99 | FixedStopLoss_Hidden=0.0
100 | IsVolatilityStopLossOn_Hidden=false
101 | VolBasedSLMultiplier_Hidden=0.0
102 | UseHiddenTakeProfit=false
103 | FixedTakeProfit_Hidden=0.0
104 | IsVolatilityTakeProfitOn_Hidden=false
105 | VolBasedTPMultiplier_Hidden=0.0
106 | Header6=----------Breakeven Stops Settings-----------
107 | UseBreakevenStops=false
108 | BreakevenBuffer=0.0
109 | Header7=----------Hidden Breakeven Stops Settings-----------
110 | UseHiddenBreakevenStops=false
111 | BreakevenBuffer_Hidden=0.0
112 | Header8=----------Trailing Stops Settings-----------
113 | UseTrailingStops=false
114 | TrailingStopDistance=0.0
115 | TrailingStopBuffer=0.0
116 | Header9=----------Hidden Trailing Stops Settings-----------
117 | UseHiddenTrailingStops=false
118 | TrailingStopDistance_Hidden=0.0
119 | TrailingStopBuffer_Hidden=0.0
120 | Header10=----------Volatility Trailing Stops Settings-----------
121 | UseVolTrailingStops=false
122 | VolTrailingDistMultiplier=0.0
123 | VolTrailingBuffMultiplier=0.0
124 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
125 | UseHiddenVolTrailing=false
126 | VolTrailingDistMultiplier_Hidden=0.0
127 | VolTrailingBuffMultiplier_Hidden=0.0
128 | Header12=----------Volatility Measurement Settings-----------
129 | atr_period=14
130 | Header13=----------Set Max Loss Limit-----------
131 | IsLossLimitActivated=false
132 | LossLimitPercent=50.0
133 | Header14=----------Set Max Volatility Limit-----------
134 | IsVolLimitActivated=false
135 | VolatilityMultiplier=3.0
136 | ATRTimeframe=60
137 | ATRPeriod=14
138 |
139 |
140 |
141 |
142 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart06.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133839
3 | comment=Trade is not allowed
4 | symbol=USDCAD
5 | period=15
6 | leftpos=46816
7 | digits=5
8 | scale=1
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
98 |
99 |
100 |
101 | name=FALCON_F2\Falcon_F2
102 | flags=343
103 | window_num=0
104 |
105 | Header1=----------EA General Settings-----------
106 | MagicNumber=8139305
107 | TerminalType=0
108 | R_Management=true
109 | Slippage=3
110 | IsECNbroker=false
111 | OnJournaling=false
112 | EnableDashboard=true
113 | Header2=----------Trading Rules Variables -----------
114 | RobotBehavior=daily
115 | usePredictedSL=false
116 | usePredictedTP=false
117 | TimeMaxHoldM1=75
118 | TimeMaxHoldM15=1125
119 | TimeMaxHoldM60=4500
120 | entryTriggerM1=20
121 | entryTriggerM15=50
122 | entryTriggerM60=100
123 | stopLossFactorM1=2.0
124 | stopLossFactorM15=0.8
125 | stopLossFactorM60=0.8
126 | takeProfFactorM1=1.0
127 | takeProfFactorM15=1.0
128 | takeProfFactorM60=1.0
129 | predictor_periodM1=1
130 | predictor_periodM15=15
131 | predictor_periodH1=60
132 | closeAllOnFridays=true
133 | use_market_type=true
134 | Header3=----------Position Sizing Settings-----------
135 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
136 | Lots=0.0
137 | IsSizingOn=true
138 | Risk=1.0
139 | MaxPositionsAllowed=1
140 | Header4=----------TP & SL Settings-----------
141 | UseFixedStopLoss=true
142 | FixedStopLoss=0.0
143 | IsVolatilityStopOn=true
144 | VolBasedSLMultiplier=4.0
145 | UseFixedTakeProfit=true
146 | FixedTakeProfit=0.0
147 | IsVolatilityTakeProfitOn=true
148 | VolBasedTPMultiplier=6.0
149 | Header5=----------Hidden TP & SL Settings-----------
150 | UseHiddenStopLoss=false
151 | FixedStopLoss_Hidden=0.0
152 | IsVolatilityStopLossOn_Hidden=false
153 | VolBasedSLMultiplier_Hidden=0.0
154 | UseHiddenTakeProfit=false
155 | FixedTakeProfit_Hidden=0.0
156 | IsVolatilityTakeProfitOn_Hidden=false
157 | VolBasedTPMultiplier_Hidden=0.0
158 | Header6=----------Breakeven Stops Settings-----------
159 | UseBreakevenStops=false
160 | BreakevenBuffer=0.0
161 | Header7=----------Hidden Breakeven Stops Settings-----------
162 | UseHiddenBreakevenStops=false
163 | BreakevenBuffer_Hidden=0.0
164 | Header8=----------Trailing Stops Settings-----------
165 | UseTrailingStops=false
166 | TrailingStopDistance=0.0
167 | TrailingStopBuffer=0.0
168 | Header9=----------Hidden Trailing Stops Settings-----------
169 | UseHiddenTrailingStops=false
170 | TrailingStopDistance_Hidden=0.0
171 | TrailingStopBuffer_Hidden=0.0
172 | Header10=----------Volatility Trailing Stops Settings-----------
173 | UseVolTrailingStops=false
174 | VolTrailingDistMultiplier=0.0
175 | VolTrailingBuffMultiplier=0.0
176 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
177 | UseHiddenVolTrailing=false
178 | VolTrailingDistMultiplier_Hidden=0.0
179 | VolTrailingBuffMultiplier_Hidden=0.0
180 | Header12=----------Volatility Measurement Settings-----------
181 | atr_period=14
182 | Header13=----------Set Max Loss Limit-----------
183 | IsLossLimitActivated=false
184 | LossLimitPercent=50.0
185 | Header14=----------Set Max Volatility Limit-----------
186 | IsVolLimitActivated=false
187 | VolatilityMultiplier=3.0
188 | ATRTimeframe=60
189 | ATRPeriod=14
190 |
191 |
192 |
193 |
194 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart01.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131036619907246545
3 | symbol=EURUSD
4 | period=1
5 | leftpos=921198
6 | digits=5
7 | scale=1
8 | graph=1
9 | fore=1
10 | grid=0
11 | volume=0
12 | scroll=1
13 | shift=1
14 | ohlc=1
15 | one_click=1
16 | one_click_btn=1
17 | askline=0
18 | days=1
19 | descriptions=0
20 | shift_size=20
21 | fixed_pos=0
22 | window_left=0
23 | window_top=0
24 | window_right=176
25 | window_bottom=77
26 | window_type=1
27 | background_color=16777215
28 | foreground_color=0
29 | barup_color=0
30 | bardown_color=0
31 | bullcandle_color=16777215
32 | bearcandle_color=0
33 | chartline_color=0
34 | volumes_color=32768
35 | grid_color=12632256
36 | askline_color=17919
37 | stops_color=17919
38 |
39 |
40 | height=148
41 | fixed_height=0
42 |
43 | name=main
44 |
61 |
78 |
95 |
112 |
131 |
146 |
161 |
162 |
163 | name=Alligator
164 | period=13
165 | shift=8
166 | period2=8
167 | shift2=5
168 | period3=5
169 | shift3=3
170 | method=2
171 | apply=4
172 | color=16711680
173 | style=0
174 | weight=1
175 | color2=255
176 | style2=0
177 | weight2=1
178 | color3=65280
179 | style3=0
180 | weight3=1
181 | period_flags=0
182 | show_data=1
183 |
184 |
185 | name=Custom Indicator
186 |
187 | name=SuperSmoother v1.1
188 | flags=275
189 | window_num=0
190 |
191 | AttenuationPeriod=10
192 | Shift=0
193 |
194 |
195 | shift_0=0
196 | draw_0=0
197 | color_0=65280
198 | style_0=0
199 | weight_0=3
200 | period_flags=0
201 | show_data=1
202 |
203 |
204 | name=Fractals
205 | color=8421504
206 | weight=1
207 | period_flags=0
208 | show_data=1
209 |
210 |
211 |
212 |
213 | height=37
214 | fixed_height=0
215 |
216 | name=MACD
217 | fast_ema=12
218 | slow_ema=26
219 | macd_sma=9
220 | apply=0
221 | color=3329330
222 | style=0
223 | weight=1
224 | signal_color=255
225 | signal_style=0
226 | signal_weight=1
227 | levels_color=12632256
228 | levels_style=2
229 | levels_weight=1
230 | level_0=0.00000000
231 | period_flags=0
232 | show_data=1
233 |
234 |
235 |
236 |
237 | height=35
238 | fixed_height=0
239 |
240 | name=Stochastic Oscillator
241 | kperiod=8
242 | dperiod=3
243 | slowing=3
244 | method=0
245 | apply=0
246 | color=3329330
247 | style=0
248 | weight=1
249 | color2=255
250 | style2=0
251 | weight2=1
252 | min=0.00000000
253 | max=100.00000000
254 | levels_color=12632256
255 | levels_style=2
256 | levels_weight=1
257 | level_0=20.00000000
258 | level_1=80.00000000
259 | period_flags=0
260 | show_data=1
261 |
262 |
263 |
264 |
265 | height=50
266 | fixed_height=0
267 |
268 | name=Relative Strength Index
269 | period=13
270 | apply=0
271 | color=3329330
272 | style=0
273 | weight=1
274 | min=0.00000000
275 | max=100.00000000
276 | levels_color=12632256
277 | levels_style=2
278 | levels_weight=1
279 | level_0=30.00000000
280 | level_1=70.00000000
281 | period_flags=0
282 | show_data=1
283 |
284 |
285 | name=Relative Strength Index
286 | period=3
287 | apply=0
288 | color=255
289 | style=0
290 | weight=1
291 | min=0.00000000
292 | max=100.00000000
293 | levels_color=12632256
294 | levels_style=2
295 | levels_weight=1
296 | level_0=30.00000000
297 | level_1=70.00000000
298 | period_flags=0
299 | show_data=1
300 |
301 |
302 |
303 |
304 | name=WatchDog
305 | flags=343
306 | window_num=0
307 |
308 | AccountRow=1
309 | DelayMinutes=5
310 |
311 |
312 |
313 |
314 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart04.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133837
3 | comment=Trade is not allowed
4 | symbol=EURUSD
5 | period=15
6 | leftpos=50228
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
150 |
151 |
152 |
153 | name=FALCON_F2\Falcon_F2
154 | flags=343
155 | window_num=0
156 |
157 | Header1=----------EA General Settings-----------
158 | MagicNumber=8139303
159 | TerminalType=0
160 | R_Management=true
161 | Slippage=3
162 | IsECNbroker=false
163 | OnJournaling=false
164 | EnableDashboard=true
165 | Header2=----------Trading Rules Variables -----------
166 | RobotBehavior=daily
167 | usePredictedSL=false
168 | usePredictedTP=false
169 | TimeMaxHoldM1=75
170 | TimeMaxHoldM15=1125
171 | TimeMaxHoldM60=4500
172 | entryTriggerM1=20
173 | entryTriggerM15=50
174 | entryTriggerM60=100
175 | stopLossFactorM1=2.0
176 | stopLossFactorM15=0.8
177 | stopLossFactorM60=0.8
178 | takeProfFactorM1=1.0
179 | takeProfFactorM15=1.0
180 | takeProfFactorM60=1.0
181 | predictor_periodM1=1
182 | predictor_periodM15=15
183 | predictor_periodH1=60
184 | closeAllOnFridays=true
185 | use_market_type=true
186 | Header3=----------Position Sizing Settings-----------
187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
188 | Lots=0.0
189 | IsSizingOn=true
190 | Risk=1.0
191 | MaxPositionsAllowed=1
192 | Header4=----------TP & SL Settings-----------
193 | UseFixedStopLoss=true
194 | FixedStopLoss=0.0
195 | IsVolatilityStopOn=true
196 | VolBasedSLMultiplier=4.0
197 | UseFixedTakeProfit=true
198 | FixedTakeProfit=0.0
199 | IsVolatilityTakeProfitOn=true
200 | VolBasedTPMultiplier=6.0
201 | Header5=----------Hidden TP & SL Settings-----------
202 | UseHiddenStopLoss=false
203 | FixedStopLoss_Hidden=0.0
204 | IsVolatilityStopLossOn_Hidden=false
205 | VolBasedSLMultiplier_Hidden=0.0
206 | UseHiddenTakeProfit=false
207 | FixedTakeProfit_Hidden=0.0
208 | IsVolatilityTakeProfitOn_Hidden=false
209 | VolBasedTPMultiplier_Hidden=0.0
210 | Header6=----------Breakeven Stops Settings-----------
211 | UseBreakevenStops=false
212 | BreakevenBuffer=0.0
213 | Header7=----------Hidden Breakeven Stops Settings-----------
214 | UseHiddenBreakevenStops=false
215 | BreakevenBuffer_Hidden=0.0
216 | Header8=----------Trailing Stops Settings-----------
217 | UseTrailingStops=false
218 | TrailingStopDistance=0.0
219 | TrailingStopBuffer=0.0
220 | Header9=----------Hidden Trailing Stops Settings-----------
221 | UseHiddenTrailingStops=false
222 | TrailingStopDistance_Hidden=0.0
223 | TrailingStopBuffer_Hidden=0.0
224 | Header10=----------Volatility Trailing Stops Settings-----------
225 | UseVolTrailingStops=false
226 | VolTrailingDistMultiplier=0.0
227 | VolTrailingBuffMultiplier=0.0
228 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
229 | UseHiddenVolTrailing=false
230 | VolTrailingDistMultiplier_Hidden=0.0
231 | VolTrailingBuffMultiplier_Hidden=0.0
232 | Header12=----------Volatility Measurement Settings-----------
233 | atr_period=14
234 | Header13=----------Set Max Loss Limit-----------
235 | IsLossLimitActivated=false
236 | LossLimitPercent=50.0
237 | Header14=----------Set Max Volatility Limit-----------
238 | IsVolLimitActivated=false
239 | VolatilityMultiplier=3.0
240 | ATRTimeframe=60
241 | ATRPeriod=14
242 |
243 |
244 |
245 |
246 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart07.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133840
3 | comment=Trade is not allowed
4 | symbol=AUDUSD
5 | period=15
6 | leftpos=52567
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
150 |
151 |
152 |
153 | name=FALCON_F2\Falcon_F2
154 | flags=343
155 | window_num=0
156 |
157 | Header1=----------EA General Settings-----------
158 | MagicNumber=8139306
159 | TerminalType=0
160 | R_Management=true
161 | Slippage=3
162 | IsECNbroker=false
163 | OnJournaling=false
164 | EnableDashboard=true
165 | Header2=----------Trading Rules Variables -----------
166 | RobotBehavior=daily
167 | usePredictedSL=false
168 | usePredictedTP=false
169 | TimeMaxHoldM1=75
170 | TimeMaxHoldM15=1125
171 | TimeMaxHoldM60=4500
172 | entryTriggerM1=20
173 | entryTriggerM15=50
174 | entryTriggerM60=100
175 | stopLossFactorM1=2.0
176 | stopLossFactorM15=0.8
177 | stopLossFactorM60=0.8
178 | takeProfFactorM1=1.0
179 | takeProfFactorM15=1.0
180 | takeProfFactorM60=1.0
181 | predictor_periodM1=1
182 | predictor_periodM15=15
183 | predictor_periodH1=60
184 | closeAllOnFridays=true
185 | use_market_type=true
186 | Header3=----------Position Sizing Settings-----------
187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
188 | Lots=0.0
189 | IsSizingOn=true
190 | Risk=1.0
191 | MaxPositionsAllowed=1
192 | Header4=----------TP & SL Settings-----------
193 | UseFixedStopLoss=true
194 | FixedStopLoss=0.0
195 | IsVolatilityStopOn=true
196 | VolBasedSLMultiplier=4.0
197 | UseFixedTakeProfit=true
198 | FixedTakeProfit=0.0
199 | IsVolatilityTakeProfitOn=true
200 | VolBasedTPMultiplier=6.0
201 | Header5=----------Hidden TP & SL Settings-----------
202 | UseHiddenStopLoss=false
203 | FixedStopLoss_Hidden=0.0
204 | IsVolatilityStopLossOn_Hidden=false
205 | VolBasedSLMultiplier_Hidden=0.0
206 | UseHiddenTakeProfit=false
207 | FixedTakeProfit_Hidden=0.0
208 | IsVolatilityTakeProfitOn_Hidden=false
209 | VolBasedTPMultiplier_Hidden=0.0
210 | Header6=----------Breakeven Stops Settings-----------
211 | UseBreakevenStops=false
212 | BreakevenBuffer=0.0
213 | Header7=----------Hidden Breakeven Stops Settings-----------
214 | UseHiddenBreakevenStops=false
215 | BreakevenBuffer_Hidden=0.0
216 | Header8=----------Trailing Stops Settings-----------
217 | UseTrailingStops=false
218 | TrailingStopDistance=0.0
219 | TrailingStopBuffer=0.0
220 | Header9=----------Hidden Trailing Stops Settings-----------
221 | UseHiddenTrailingStops=false
222 | TrailingStopDistance_Hidden=0.0
223 | TrailingStopBuffer_Hidden=0.0
224 | Header10=----------Volatility Trailing Stops Settings-----------
225 | UseVolTrailingStops=false
226 | VolTrailingDistMultiplier=0.0
227 | VolTrailingBuffMultiplier=0.0
228 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
229 | UseHiddenVolTrailing=false
230 | VolTrailingDistMultiplier_Hidden=0.0
231 | VolTrailingBuffMultiplier_Hidden=0.0
232 | Header12=----------Volatility Measurement Settings-----------
233 | atr_period=14
234 | Header13=----------Set Max Loss Limit-----------
235 | IsLossLimitActivated=false
236 | LossLimitPercent=50.0
237 | Header14=----------Set Max Volatility Limit-----------
238 | IsVolLimitActivated=false
239 | VolatilityMultiplier=3.0
240 | ATRTimeframe=60
241 | ATRPeriod=14
242 |
243 |
244 |
245 |
246 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart08.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133841
3 | comment=Trade is not allowed
4 | symbol=EURGBP
5 | period=15
6 | leftpos=47023
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
150 |
151 |
152 |
153 | name=FALCON_F2\Falcon_F2
154 | flags=343
155 | window_num=0
156 |
157 | Header1=----------EA General Settings-----------
158 | MagicNumber=8139307
159 | TerminalType=0
160 | R_Management=true
161 | Slippage=3
162 | IsECNbroker=false
163 | OnJournaling=false
164 | EnableDashboard=true
165 | Header2=----------Trading Rules Variables -----------
166 | RobotBehavior=daily
167 | usePredictedSL=false
168 | usePredictedTP=false
169 | TimeMaxHoldM1=75
170 | TimeMaxHoldM15=1125
171 | TimeMaxHoldM60=4500
172 | entryTriggerM1=20
173 | entryTriggerM15=50
174 | entryTriggerM60=100
175 | stopLossFactorM1=2.0
176 | stopLossFactorM15=0.8
177 | stopLossFactorM60=0.8
178 | takeProfFactorM1=1.0
179 | takeProfFactorM15=1.0
180 | takeProfFactorM60=1.0
181 | predictor_periodM1=1
182 | predictor_periodM15=15
183 | predictor_periodH1=60
184 | closeAllOnFridays=true
185 | use_market_type=true
186 | Header3=----------Position Sizing Settings-----------
187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
188 | Lots=0.0
189 | IsSizingOn=true
190 | Risk=1.0
191 | MaxPositionsAllowed=1
192 | Header4=----------TP & SL Settings-----------
193 | UseFixedStopLoss=true
194 | FixedStopLoss=0.0
195 | IsVolatilityStopOn=true
196 | VolBasedSLMultiplier=4.0
197 | UseFixedTakeProfit=true
198 | FixedTakeProfit=0.0
199 | IsVolatilityTakeProfitOn=true
200 | VolBasedTPMultiplier=6.0
201 | Header5=----------Hidden TP & SL Settings-----------
202 | UseHiddenStopLoss=false
203 | FixedStopLoss_Hidden=0.0
204 | IsVolatilityStopLossOn_Hidden=false
205 | VolBasedSLMultiplier_Hidden=0.0
206 | UseHiddenTakeProfit=false
207 | FixedTakeProfit_Hidden=0.0
208 | IsVolatilityTakeProfitOn_Hidden=false
209 | VolBasedTPMultiplier_Hidden=0.0
210 | Header6=----------Breakeven Stops Settings-----------
211 | UseBreakevenStops=false
212 | BreakevenBuffer=0.0
213 | Header7=----------Hidden Breakeven Stops Settings-----------
214 | UseHiddenBreakevenStops=false
215 | BreakevenBuffer_Hidden=0.0
216 | Header8=----------Trailing Stops Settings-----------
217 | UseTrailingStops=false
218 | TrailingStopDistance=0.0
219 | TrailingStopBuffer=0.0
220 | Header9=----------Hidden Trailing Stops Settings-----------
221 | UseHiddenTrailingStops=false
222 | TrailingStopDistance_Hidden=0.0
223 | TrailingStopBuffer_Hidden=0.0
224 | Header10=----------Volatility Trailing Stops Settings-----------
225 | UseVolTrailingStops=false
226 | VolTrailingDistMultiplier=0.0
227 | VolTrailingBuffMultiplier=0.0
228 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
229 | UseHiddenVolTrailing=false
230 | VolTrailingDistMultiplier_Hidden=0.0
231 | VolTrailingBuffMultiplier_Hidden=0.0
232 | Header12=----------Volatility Measurement Settings-----------
233 | atr_period=14
234 | Header13=----------Set Max Loss Limit-----------
235 | IsLossLimitActivated=false
236 | LossLimitPercent=50.0
237 | Header14=----------Set Max Volatility Limit-----------
238 | IsVolLimitActivated=false
239 | VolatilityMultiplier=3.0
240 | ATRTimeframe=60
241 | ATRPeriod=14
242 |
243 |
244 |
245 |
246 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart17.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133850
3 | comment=Trade is not allowed
4 | symbol=AUDCHF
5 | period=15
6 | leftpos=47043
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
150 |
151 |
152 |
153 | name=FALCON_F2\Falcon_F2
154 | flags=343
155 | window_num=0
156 |
157 | Header1=----------EA General Settings-----------
158 | MagicNumber=8139316
159 | TerminalType=0
160 | R_Management=true
161 | Slippage=3
162 | IsECNbroker=false
163 | OnJournaling=false
164 | EnableDashboard=true
165 | Header2=----------Trading Rules Variables -----------
166 | RobotBehavior=daily
167 | usePredictedSL=false
168 | usePredictedTP=false
169 | TimeMaxHoldM1=75
170 | TimeMaxHoldM15=1125
171 | TimeMaxHoldM60=4500
172 | entryTriggerM1=20
173 | entryTriggerM15=50
174 | entryTriggerM60=100
175 | stopLossFactorM1=2.0
176 | stopLossFactorM15=0.8
177 | stopLossFactorM60=0.8
178 | takeProfFactorM1=1.0
179 | takeProfFactorM15=1.0
180 | takeProfFactorM60=1.0
181 | predictor_periodM1=1
182 | predictor_periodM15=15
183 | predictor_periodH1=60
184 | closeAllOnFridays=true
185 | use_market_type=true
186 | Header3=----------Position Sizing Settings-----------
187 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
188 | Lots=0.0
189 | IsSizingOn=true
190 | Risk=1.0
191 | MaxPositionsAllowed=1
192 | Header4=----------TP & SL Settings-----------
193 | UseFixedStopLoss=true
194 | FixedStopLoss=0.0
195 | IsVolatilityStopOn=true
196 | VolBasedSLMultiplier=4.0
197 | UseFixedTakeProfit=true
198 | FixedTakeProfit=0.0
199 | IsVolatilityTakeProfitOn=true
200 | VolBasedTPMultiplier=6.0
201 | Header5=----------Hidden TP & SL Settings-----------
202 | UseHiddenStopLoss=false
203 | FixedStopLoss_Hidden=0.0
204 | IsVolatilityStopLossOn_Hidden=false
205 | VolBasedSLMultiplier_Hidden=0.0
206 | UseHiddenTakeProfit=false
207 | FixedTakeProfit_Hidden=0.0
208 | IsVolatilityTakeProfitOn_Hidden=false
209 | VolBasedTPMultiplier_Hidden=0.0
210 | Header6=----------Breakeven Stops Settings-----------
211 | UseBreakevenStops=false
212 | BreakevenBuffer=0.0
213 | Header7=----------Hidden Breakeven Stops Settings-----------
214 | UseHiddenBreakevenStops=false
215 | BreakevenBuffer_Hidden=0.0
216 | Header8=----------Trailing Stops Settings-----------
217 | UseTrailingStops=false
218 | TrailingStopDistance=0.0
219 | TrailingStopBuffer=0.0
220 | Header9=----------Hidden Trailing Stops Settings-----------
221 | UseHiddenTrailingStops=false
222 | TrailingStopDistance_Hidden=0.0
223 | TrailingStopBuffer_Hidden=0.0
224 | Header10=----------Volatility Trailing Stops Settings-----------
225 | UseVolTrailingStops=false
226 | VolTrailingDistMultiplier=0.0
227 | VolTrailingBuffMultiplier=0.0
228 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
229 | UseHiddenVolTrailing=false
230 | VolTrailingDistMultiplier_Hidden=0.0
231 | VolTrailingBuffMultiplier_Hidden=0.0
232 | Header12=----------Volatility Measurement Settings-----------
233 | atr_period=14
234 | Header13=----------Set Max Loss Limit-----------
235 | IsLossLimitActivated=false
236 | LossLimitPercent=50.0
237 | Header14=----------Set Max Volatility Limit-----------
238 | IsVolLimitActivated=false
239 | VolatilityMultiplier=3.0
240 | ATRTimeframe=60
241 | ATRPeriod=14
242 |
243 |
244 |
245 |
246 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart24.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133857
3 | comment=Trade is not allowed
4 | symbol=NZDUSD
5 | period=15
6 | leftpos=44995
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
166 |
185 |
186 |
187 |
188 |
189 | name=FALCON_F2\Falcon_F2
190 | flags=343
191 | window_num=0
192 |
193 | Header1=----------EA General Settings-----------
194 | MagicNumber=8139323
195 | TerminalType=0
196 | R_Management=true
197 | Slippage=3
198 | IsECNbroker=false
199 | OnJournaling=false
200 | EnableDashboard=true
201 | Header2=----------Trading Rules Variables -----------
202 | RobotBehavior=daily
203 | usePredictedSL=false
204 | usePredictedTP=false
205 | TimeMaxHoldM1=75
206 | TimeMaxHoldM15=1125
207 | TimeMaxHoldM60=4500
208 | entryTriggerM1=20
209 | entryTriggerM15=50
210 | entryTriggerM60=100
211 | stopLossFactorM1=2.0
212 | stopLossFactorM15=0.8
213 | stopLossFactorM60=0.8
214 | takeProfFactorM1=1.0
215 | takeProfFactorM15=1.0
216 | takeProfFactorM60=1.0
217 | predictor_periodM1=1
218 | predictor_periodM15=15
219 | predictor_periodH1=60
220 | closeAllOnFridays=true
221 | use_market_type=true
222 | Header3=----------Position Sizing Settings-----------
223 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
224 | Lots=0.0
225 | IsSizingOn=true
226 | Risk=1.0
227 | MaxPositionsAllowed=1
228 | Header4=----------TP & SL Settings-----------
229 | UseFixedStopLoss=true
230 | FixedStopLoss=0.0
231 | IsVolatilityStopOn=true
232 | VolBasedSLMultiplier=4.0
233 | UseFixedTakeProfit=true
234 | FixedTakeProfit=0.0
235 | IsVolatilityTakeProfitOn=true
236 | VolBasedTPMultiplier=6.0
237 | Header5=----------Hidden TP & SL Settings-----------
238 | UseHiddenStopLoss=false
239 | FixedStopLoss_Hidden=0.0
240 | IsVolatilityStopLossOn_Hidden=false
241 | VolBasedSLMultiplier_Hidden=0.0
242 | UseHiddenTakeProfit=false
243 | FixedTakeProfit_Hidden=0.0
244 | IsVolatilityTakeProfitOn_Hidden=false
245 | VolBasedTPMultiplier_Hidden=0.0
246 | Header6=----------Breakeven Stops Settings-----------
247 | UseBreakevenStops=false
248 | BreakevenBuffer=0.0
249 | Header7=----------Hidden Breakeven Stops Settings-----------
250 | UseHiddenBreakevenStops=false
251 | BreakevenBuffer_Hidden=0.0
252 | Header8=----------Trailing Stops Settings-----------
253 | UseTrailingStops=false
254 | TrailingStopDistance=0.0
255 | TrailingStopBuffer=0.0
256 | Header9=----------Hidden Trailing Stops Settings-----------
257 | UseHiddenTrailingStops=false
258 | TrailingStopDistance_Hidden=0.0
259 | TrailingStopBuffer_Hidden=0.0
260 | Header10=----------Volatility Trailing Stops Settings-----------
261 | UseVolTrailingStops=false
262 | VolTrailingDistMultiplier=0.0
263 | VolTrailingBuffMultiplier=0.0
264 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
265 | UseHiddenVolTrailing=false
266 | VolTrailingDistMultiplier_Hidden=0.0
267 | VolTrailingBuffMultiplier_Hidden=0.0
268 | Header12=----------Volatility Measurement Settings-----------
269 | atr_period=14
270 | Header13=----------Set Max Loss Limit-----------
271 | IsLossLimitActivated=false
272 | LossLimitPercent=50.0
273 | Header14=----------Set Max Volatility Limit-----------
274 | IsVolLimitActivated=false
275 | VolatilityMultiplier=3.0
276 | ATRTimeframe=60
277 | ATRPeriod=14
278 |
279 |
280 |
281 |
282 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart28.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133861
3 | comment=Trade is not allowed
4 | symbol=GBPNZD
5 | period=15
6 | leftpos=44996
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
202 |
203 |
204 |
205 | name=FALCON_F2\Falcon_F2
206 | flags=343
207 | window_num=0
208 |
209 | Header1=----------EA General Settings-----------
210 | MagicNumber=8139327
211 | TerminalType=0
212 | R_Management=true
213 | Slippage=3
214 | IsECNbroker=false
215 | OnJournaling=false
216 | EnableDashboard=true
217 | Header2=----------Trading Rules Variables -----------
218 | RobotBehavior=daily
219 | usePredictedSL=false
220 | usePredictedTP=false
221 | TimeMaxHoldM1=75
222 | TimeMaxHoldM15=1125
223 | TimeMaxHoldM60=4500
224 | entryTriggerM1=20
225 | entryTriggerM15=50
226 | entryTriggerM60=100
227 | stopLossFactorM1=2.0
228 | stopLossFactorM15=0.8
229 | stopLossFactorM60=0.8
230 | takeProfFactorM1=1.0
231 | takeProfFactorM15=1.0
232 | takeProfFactorM60=1.0
233 | predictor_periodM1=1
234 | predictor_periodM15=15
235 | predictor_periodH1=60
236 | closeAllOnFridays=true
237 | use_market_type=true
238 | Header3=----------Position Sizing Settings-----------
239 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
240 | Lots=0.0
241 | IsSizingOn=true
242 | Risk=1.0
243 | MaxPositionsAllowed=1
244 | Header4=----------TP & SL Settings-----------
245 | UseFixedStopLoss=true
246 | FixedStopLoss=0.0
247 | IsVolatilityStopOn=true
248 | VolBasedSLMultiplier=4.0
249 | UseFixedTakeProfit=true
250 | FixedTakeProfit=0.0
251 | IsVolatilityTakeProfitOn=true
252 | VolBasedTPMultiplier=6.0
253 | Header5=----------Hidden TP & SL Settings-----------
254 | UseHiddenStopLoss=false
255 | FixedStopLoss_Hidden=0.0
256 | IsVolatilityStopLossOn_Hidden=false
257 | VolBasedSLMultiplier_Hidden=0.0
258 | UseHiddenTakeProfit=false
259 | FixedTakeProfit_Hidden=0.0
260 | IsVolatilityTakeProfitOn_Hidden=false
261 | VolBasedTPMultiplier_Hidden=0.0
262 | Header6=----------Breakeven Stops Settings-----------
263 | UseBreakevenStops=false
264 | BreakevenBuffer=0.0
265 | Header7=----------Hidden Breakeven Stops Settings-----------
266 | UseHiddenBreakevenStops=false
267 | BreakevenBuffer_Hidden=0.0
268 | Header8=----------Trailing Stops Settings-----------
269 | UseTrailingStops=false
270 | TrailingStopDistance=0.0
271 | TrailingStopBuffer=0.0
272 | Header9=----------Hidden Trailing Stops Settings-----------
273 | UseHiddenTrailingStops=false
274 | TrailingStopDistance_Hidden=0.0
275 | TrailingStopBuffer_Hidden=0.0
276 | Header10=----------Volatility Trailing Stops Settings-----------
277 | UseVolTrailingStops=false
278 | VolTrailingDistMultiplier=0.0
279 | VolTrailingBuffMultiplier=0.0
280 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
281 | UseHiddenVolTrailing=false
282 | VolTrailingDistMultiplier_Hidden=0.0
283 | VolTrailingBuffMultiplier_Hidden=0.0
284 | Header12=----------Volatility Measurement Settings-----------
285 | atr_period=14
286 | Header13=----------Set Max Loss Limit-----------
287 | IsLossLimitActivated=false
288 | LossLimitPercent=50.0
289 | Header14=----------Set Max Volatility Limit-----------
290 | IsVolLimitActivated=false
291 | VolatilityMultiplier=3.0
292 | ATRTimeframe=60
293 | ATRPeriod=14
294 |
295 |
296 |
297 |
298 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart29.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133862
3 | comment=Trade is not allowed
4 | symbol=NZDCAD
5 | period=15
6 | leftpos=44891
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=3
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
218 |
237 |
238 |
239 |
240 |
241 | name=FALCON_F2\Falcon_F2
242 | flags=343
243 | window_num=0
244 |
245 | Header1=----------EA General Settings-----------
246 | MagicNumber=8139328
247 | TerminalType=0
248 | R_Management=true
249 | Slippage=3
250 | IsECNbroker=false
251 | OnJournaling=false
252 | EnableDashboard=true
253 | Header2=----------Trading Rules Variables -----------
254 | RobotBehavior=daily
255 | usePredictedSL=false
256 | usePredictedTP=false
257 | TimeMaxHoldM1=75
258 | TimeMaxHoldM15=1125
259 | TimeMaxHoldM60=4500
260 | entryTriggerM1=20
261 | entryTriggerM15=50
262 | entryTriggerM60=100
263 | stopLossFactorM1=2.0
264 | stopLossFactorM15=0.8
265 | stopLossFactorM60=0.8
266 | takeProfFactorM1=1.0
267 | takeProfFactorM15=1.0
268 | takeProfFactorM60=1.0
269 | predictor_periodM1=1
270 | predictor_periodM15=15
271 | predictor_periodH1=60
272 | closeAllOnFridays=true
273 | use_market_type=true
274 | Header3=----------Position Sizing Settings-----------
275 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
276 | Lots=0.0
277 | IsSizingOn=true
278 | Risk=1.0
279 | MaxPositionsAllowed=1
280 | Header4=----------TP & SL Settings-----------
281 | UseFixedStopLoss=true
282 | FixedStopLoss=0.0
283 | IsVolatilityStopOn=true
284 | VolBasedSLMultiplier=4.0
285 | UseFixedTakeProfit=true
286 | FixedTakeProfit=0.0
287 | IsVolatilityTakeProfitOn=true
288 | VolBasedTPMultiplier=6.0
289 | Header5=----------Hidden TP & SL Settings-----------
290 | UseHiddenStopLoss=false
291 | FixedStopLoss_Hidden=0.0
292 | IsVolatilityStopLossOn_Hidden=false
293 | VolBasedSLMultiplier_Hidden=0.0
294 | UseHiddenTakeProfit=false
295 | FixedTakeProfit_Hidden=0.0
296 | IsVolatilityTakeProfitOn_Hidden=false
297 | VolBasedTPMultiplier_Hidden=0.0
298 | Header6=----------Breakeven Stops Settings-----------
299 | UseBreakevenStops=false
300 | BreakevenBuffer=0.0
301 | Header7=----------Hidden Breakeven Stops Settings-----------
302 | UseHiddenBreakevenStops=false
303 | BreakevenBuffer_Hidden=0.0
304 | Header8=----------Trailing Stops Settings-----------
305 | UseTrailingStops=false
306 | TrailingStopDistance=0.0
307 | TrailingStopBuffer=0.0
308 | Header9=----------Hidden Trailing Stops Settings-----------
309 | UseHiddenTrailingStops=false
310 | TrailingStopDistance_Hidden=0.0
311 | TrailingStopBuffer_Hidden=0.0
312 | Header10=----------Volatility Trailing Stops Settings-----------
313 | UseVolTrailingStops=false
314 | VolTrailingDistMultiplier=0.0
315 | VolTrailingBuffMultiplier=0.0
316 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
317 | UseHiddenVolTrailing=false
318 | VolTrailingDistMultiplier_Hidden=0.0
319 | VolTrailingBuffMultiplier_Hidden=0.0
320 | Header12=----------Volatility Measurement Settings-----------
321 | atr_period=14
322 | Header13=----------Set Max Loss Limit-----------
323 | IsLossLimitActivated=false
324 | LossLimitPercent=50.0
325 | Header14=----------Set Max Volatility Limit-----------
326 | IsVolLimitActivated=false
327 | VolatilityMultiplier=3.0
328 | ATRTimeframe=60
329 | ATRPeriod=14
330 |
331 |
332 |
333 |
334 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart05.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133838
3 | comment=Trade is not allowed
4 | symbol=USDJPY
5 | period=15
6 | leftpos=57787
7 | digits=3
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
218 |
237 |
238 |
239 |
240 |
241 | name=FALCON_F2\Falcon_F2
242 | flags=343
243 | window_num=0
244 |
245 | Header1=----------EA General Settings-----------
246 | MagicNumber=8139304
247 | TerminalType=0
248 | R_Management=true
249 | Slippage=3
250 | IsECNbroker=false
251 | OnJournaling=false
252 | EnableDashboard=true
253 | Header2=----------Trading Rules Variables -----------
254 | RobotBehavior=daily
255 | usePredictedSL=false
256 | usePredictedTP=false
257 | TimeMaxHoldM1=75
258 | TimeMaxHoldM15=1125
259 | TimeMaxHoldM60=4500
260 | entryTriggerM1=20
261 | entryTriggerM15=50
262 | entryTriggerM60=100
263 | stopLossFactorM1=2.0
264 | stopLossFactorM15=0.8
265 | stopLossFactorM60=0.8
266 | takeProfFactorM1=1.0
267 | takeProfFactorM15=1.0
268 | takeProfFactorM60=1.0
269 | predictor_periodM1=1
270 | predictor_periodM15=15
271 | predictor_periodH1=60
272 | closeAllOnFridays=true
273 | use_market_type=true
274 | Header3=----------Position Sizing Settings-----------
275 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
276 | Lots=0.0
277 | IsSizingOn=true
278 | Risk=1.0
279 | MaxPositionsAllowed=1
280 | Header4=----------TP & SL Settings-----------
281 | UseFixedStopLoss=true
282 | FixedStopLoss=0.0
283 | IsVolatilityStopOn=true
284 | VolBasedSLMultiplier=4.0
285 | UseFixedTakeProfit=true
286 | FixedTakeProfit=0.0
287 | IsVolatilityTakeProfitOn=true
288 | VolBasedTPMultiplier=6.0
289 | Header5=----------Hidden TP & SL Settings-----------
290 | UseHiddenStopLoss=false
291 | FixedStopLoss_Hidden=0.0
292 | IsVolatilityStopLossOn_Hidden=false
293 | VolBasedSLMultiplier_Hidden=0.0
294 | UseHiddenTakeProfit=false
295 | FixedTakeProfit_Hidden=0.0
296 | IsVolatilityTakeProfitOn_Hidden=false
297 | VolBasedTPMultiplier_Hidden=0.0
298 | Header6=----------Breakeven Stops Settings-----------
299 | UseBreakevenStops=false
300 | BreakevenBuffer=0.0
301 | Header7=----------Hidden Breakeven Stops Settings-----------
302 | UseHiddenBreakevenStops=false
303 | BreakevenBuffer_Hidden=0.0
304 | Header8=----------Trailing Stops Settings-----------
305 | UseTrailingStops=false
306 | TrailingStopDistance=0.0
307 | TrailingStopBuffer=0.0
308 | Header9=----------Hidden Trailing Stops Settings-----------
309 | UseHiddenTrailingStops=false
310 | TrailingStopDistance_Hidden=0.0
311 | TrailingStopBuffer_Hidden=0.0
312 | Header10=----------Volatility Trailing Stops Settings-----------
313 | UseVolTrailingStops=false
314 | VolTrailingDistMultiplier=0.0
315 | VolTrailingBuffMultiplier=0.0
316 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
317 | UseHiddenVolTrailing=false
318 | VolTrailingDistMultiplier_Hidden=0.0
319 | VolTrailingBuffMultiplier_Hidden=0.0
320 | Header12=----------Volatility Measurement Settings-----------
321 | atr_period=14
322 | Header13=----------Set Max Loss Limit-----------
323 | IsLossLimitActivated=false
324 | LossLimitPercent=50.0
325 | Header14=----------Set Max Volatility Limit-----------
326 | IsVolLimitActivated=false
327 | VolatilityMultiplier=3.0
328 | ATRTimeframe=60
329 | ATRPeriod=14
330 |
331 |
332 |
333 |
334 |
--------------------------------------------------------------------------------
/mt4_profile/T1_FALCON_F2/chart13.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925660681570
3 | comment=Trade is allowed
4 | symbol=CADJPY
5 | period=15
6 | leftpos=56929
7 | digits=3
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
219 |
236 |
253 |
254 |
255 |
256 |
257 | name=FALCON_F2\Falcon_F2
258 | flags=343
259 | window_num=0
260 |
261 | Header1=----------EA General Settings-----------
262 | MagicNumber=8139112
263 | TerminalType=1
264 | R_Management=true
265 | Slippage=3
266 | IsECNbroker=false
267 | OnJournaling=false
268 | EnableDashboard=true
269 | Header2=----------Trading Rules Variables -----------
270 | RobotBehavior=daily
271 | usePredictedSL=false
272 | usePredictedTP=false
273 | TimeMaxHoldM1=75
274 | TimeMaxHoldM15=1125
275 | TimeMaxHoldM60=4500
276 | entryTriggerM1=20
277 | entryTriggerM15=50
278 | entryTriggerM60=100
279 | stopLossFactorM1=2.0
280 | stopLossFactorM15=0.8
281 | stopLossFactorM60=0.8
282 | takeProfFactorM1=1.0
283 | takeProfFactorM15=1.0
284 | takeProfFactorM60=1.0
285 | predictor_periodM1=1
286 | predictor_periodM15=15
287 | predictor_periodH1=60
288 | closeAllOnFridays=true
289 | use_market_type=true
290 | Header3=----------Position Sizing Settings-----------
291 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
292 | Lots=0.01
293 | IsSizingOn=false
294 | Risk=1.0
295 | MaxPositionsAllowed=25
296 | Header4=----------TP & SL Settings-----------
297 | UseFixedStopLoss=true
298 | FixedStopLoss=0.0
299 | IsVolatilityStopOn=true
300 | VolBasedSLMultiplier=4.0
301 | UseFixedTakeProfit=true
302 | FixedTakeProfit=0.0
303 | IsVolatilityTakeProfitOn=true
304 | VolBasedTPMultiplier=6.0
305 | Header5=----------Hidden TP & SL Settings-----------
306 | UseHiddenStopLoss=false
307 | FixedStopLoss_Hidden=0.0
308 | IsVolatilityStopLossOn_Hidden=false
309 | VolBasedSLMultiplier_Hidden=0.0
310 | UseHiddenTakeProfit=false
311 | FixedTakeProfit_Hidden=0.0
312 | IsVolatilityTakeProfitOn_Hidden=false
313 | VolBasedTPMultiplier_Hidden=0.0
314 | Header6=----------Breakeven Stops Settings-----------
315 | UseBreakevenStops=false
316 | BreakevenBuffer=0.0
317 | Header7=----------Hidden Breakeven Stops Settings-----------
318 | UseHiddenBreakevenStops=false
319 | BreakevenBuffer_Hidden=0.0
320 | Header8=----------Trailing Stops Settings-----------
321 | UseTrailingStops=false
322 | TrailingStopDistance=0.0
323 | TrailingStopBuffer=0.0
324 | Header9=----------Hidden Trailing Stops Settings-----------
325 | UseHiddenTrailingStops=false
326 | TrailingStopDistance_Hidden=0.0
327 | TrailingStopBuffer_Hidden=0.0
328 | Header10=----------Volatility Trailing Stops Settings-----------
329 | UseVolTrailingStops=false
330 | VolTrailingDistMultiplier=0.0
331 | VolTrailingBuffMultiplier=0.0
332 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
333 | UseHiddenVolTrailing=false
334 | VolTrailingDistMultiplier_Hidden=0.0
335 | VolTrailingBuffMultiplier_Hidden=0.0
336 | Header12=----------Volatility Measurement Settings-----------
337 | atr_period=14
338 | Header13=----------Set Max Loss Limit-----------
339 | IsLossLimitActivated=false
340 | LossLimitPercent=50.0
341 | Header14=----------Set Max Volatility Limit-----------
342 | IsVolLimitActivated=false
343 | VolatilityMultiplier=3.0
344 | ATRTimeframe=60
345 | ATRPeriod=14
346 |
347 |
348 |
349 |
350 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart18.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133851
3 | comment=Trade is not allowed
4 | symbol=AUDJPY
5 | period=15
6 | leftpos=57140
7 | digits=3
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
219 |
236 |
253 |
254 |
255 |
256 |
257 | name=FALCON_F2\Falcon_F2
258 | flags=343
259 | window_num=0
260 |
261 | Header1=----------EA General Settings-----------
262 | MagicNumber=8139317
263 | TerminalType=0
264 | R_Management=true
265 | Slippage=3
266 | IsECNbroker=false
267 | OnJournaling=false
268 | EnableDashboard=true
269 | Header2=----------Trading Rules Variables -----------
270 | RobotBehavior=daily
271 | usePredictedSL=false
272 | usePredictedTP=false
273 | TimeMaxHoldM1=75
274 | TimeMaxHoldM15=1125
275 | TimeMaxHoldM60=4500
276 | entryTriggerM1=20
277 | entryTriggerM15=50
278 | entryTriggerM60=100
279 | stopLossFactorM1=2.0
280 | stopLossFactorM15=0.8
281 | stopLossFactorM60=0.8
282 | takeProfFactorM1=1.0
283 | takeProfFactorM15=1.0
284 | takeProfFactorM60=1.0
285 | predictor_periodM1=1
286 | predictor_periodM15=15
287 | predictor_periodH1=60
288 | closeAllOnFridays=true
289 | use_market_type=true
290 | Header3=----------Position Sizing Settings-----------
291 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
292 | Lots=0.0
293 | IsSizingOn=true
294 | Risk=1.0
295 | MaxPositionsAllowed=1
296 | Header4=----------TP & SL Settings-----------
297 | UseFixedStopLoss=true
298 | FixedStopLoss=0.0
299 | IsVolatilityStopOn=true
300 | VolBasedSLMultiplier=4.0
301 | UseFixedTakeProfit=true
302 | FixedTakeProfit=0.0
303 | IsVolatilityTakeProfitOn=true
304 | VolBasedTPMultiplier=6.0
305 | Header5=----------Hidden TP & SL Settings-----------
306 | UseHiddenStopLoss=false
307 | FixedStopLoss_Hidden=0.0
308 | IsVolatilityStopLossOn_Hidden=false
309 | VolBasedSLMultiplier_Hidden=0.0
310 | UseHiddenTakeProfit=false
311 | FixedTakeProfit_Hidden=0.0
312 | IsVolatilityTakeProfitOn_Hidden=false
313 | VolBasedTPMultiplier_Hidden=0.0
314 | Header6=----------Breakeven Stops Settings-----------
315 | UseBreakevenStops=false
316 | BreakevenBuffer=0.0
317 | Header7=----------Hidden Breakeven Stops Settings-----------
318 | UseHiddenBreakevenStops=false
319 | BreakevenBuffer_Hidden=0.0
320 | Header8=----------Trailing Stops Settings-----------
321 | UseTrailingStops=false
322 | TrailingStopDistance=0.0
323 | TrailingStopBuffer=0.0
324 | Header9=----------Hidden Trailing Stops Settings-----------
325 | UseHiddenTrailingStops=false
326 | TrailingStopDistance_Hidden=0.0
327 | TrailingStopBuffer_Hidden=0.0
328 | Header10=----------Volatility Trailing Stops Settings-----------
329 | UseVolTrailingStops=false
330 | VolTrailingDistMultiplier=0.0
331 | VolTrailingBuffMultiplier=0.0
332 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
333 | UseHiddenVolTrailing=false
334 | VolTrailingDistMultiplier_Hidden=0.0
335 | VolTrailingBuffMultiplier_Hidden=0.0
336 | Header12=----------Volatility Measurement Settings-----------
337 | atr_period=14
338 | Header13=----------Set Max Loss Limit-----------
339 | IsLossLimitActivated=false
340 | LossLimitPercent=50.0
341 | Header14=----------Set Max Volatility Limit-----------
342 | IsVolLimitActivated=false
343 | VolatilityMultiplier=3.0
344 | ATRTimeframe=60
345 | ATRPeriod=14
346 |
347 |
348 |
349 |
350 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart23.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133856
3 | comment=Trade is not allowed
4 | symbol=NZDJPY
5 | period=15
6 | leftpos=44996
7 | digits=3
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
219 |
236 |
253 |
254 |
255 |
256 |
257 | name=FALCON_F2\Falcon_F2
258 | flags=343
259 | window_num=0
260 |
261 | Header1=----------EA General Settings-----------
262 | MagicNumber=8139322
263 | TerminalType=0
264 | R_Management=true
265 | Slippage=3
266 | IsECNbroker=false
267 | OnJournaling=false
268 | EnableDashboard=true
269 | Header2=----------Trading Rules Variables -----------
270 | RobotBehavior=daily
271 | usePredictedSL=false
272 | usePredictedTP=false
273 | TimeMaxHoldM1=75
274 | TimeMaxHoldM15=1125
275 | TimeMaxHoldM60=4500
276 | entryTriggerM1=20
277 | entryTriggerM15=50
278 | entryTriggerM60=100
279 | stopLossFactorM1=2.0
280 | stopLossFactorM15=0.8
281 | stopLossFactorM60=0.8
282 | takeProfFactorM1=1.0
283 | takeProfFactorM15=1.0
284 | takeProfFactorM60=1.0
285 | predictor_periodM1=1
286 | predictor_periodM15=15
287 | predictor_periodH1=60
288 | closeAllOnFridays=true
289 | use_market_type=true
290 | Header3=----------Position Sizing Settings-----------
291 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
292 | Lots=0.0
293 | IsSizingOn=true
294 | Risk=1.0
295 | MaxPositionsAllowed=1
296 | Header4=----------TP & SL Settings-----------
297 | UseFixedStopLoss=true
298 | FixedStopLoss=0.0
299 | IsVolatilityStopOn=true
300 | VolBasedSLMultiplier=4.0
301 | UseFixedTakeProfit=true
302 | FixedTakeProfit=0.0
303 | IsVolatilityTakeProfitOn=true
304 | VolBasedTPMultiplier=6.0
305 | Header5=----------Hidden TP & SL Settings-----------
306 | UseHiddenStopLoss=false
307 | FixedStopLoss_Hidden=0.0
308 | IsVolatilityStopLossOn_Hidden=false
309 | VolBasedSLMultiplier_Hidden=0.0
310 | UseHiddenTakeProfit=false
311 | FixedTakeProfit_Hidden=0.0
312 | IsVolatilityTakeProfitOn_Hidden=false
313 | VolBasedTPMultiplier_Hidden=0.0
314 | Header6=----------Breakeven Stops Settings-----------
315 | UseBreakevenStops=false
316 | BreakevenBuffer=0.0
317 | Header7=----------Hidden Breakeven Stops Settings-----------
318 | UseHiddenBreakevenStops=false
319 | BreakevenBuffer_Hidden=0.0
320 | Header8=----------Trailing Stops Settings-----------
321 | UseTrailingStops=false
322 | TrailingStopDistance=0.0
323 | TrailingStopBuffer=0.0
324 | Header9=----------Hidden Trailing Stops Settings-----------
325 | UseHiddenTrailingStops=false
326 | TrailingStopDistance_Hidden=0.0
327 | TrailingStopBuffer_Hidden=0.0
328 | Header10=----------Volatility Trailing Stops Settings-----------
329 | UseVolTrailingStops=false
330 | VolTrailingDistMultiplier=0.0
331 | VolTrailingBuffMultiplier=0.0
332 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
333 | UseHiddenVolTrailing=false
334 | VolTrailingDistMultiplier_Hidden=0.0
335 | VolTrailingBuffMultiplier_Hidden=0.0
336 | Header12=----------Volatility Measurement Settings-----------
337 | atr_period=14
338 | Header13=----------Set Max Loss Limit-----------
339 | IsLossLimitActivated=false
340 | LossLimitPercent=50.0
341 | Header14=----------Set Max Volatility Limit-----------
342 | IsVolLimitActivated=false
343 | VolatilityMultiplier=3.0
344 | ATRTimeframe=60
345 | ATRPeriod=14
346 |
347 |
348 |
349 |
350 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart21.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133854
3 | comment=Trade is not allowed
4 | symbol=EURCAD
5 | period=15
6 | leftpos=45487
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
218 |
237 |
255 |
272 |
289 |
290 |
291 |
292 |
293 | name=FALCON_F2\Falcon_F2
294 | flags=343
295 | window_num=0
296 |
297 | Header1=----------EA General Settings-----------
298 | MagicNumber=8139320
299 | TerminalType=0
300 | R_Management=true
301 | Slippage=3
302 | IsECNbroker=false
303 | OnJournaling=false
304 | EnableDashboard=true
305 | Header2=----------Trading Rules Variables -----------
306 | RobotBehavior=daily
307 | usePredictedSL=false
308 | usePredictedTP=false
309 | TimeMaxHoldM1=75
310 | TimeMaxHoldM15=1125
311 | TimeMaxHoldM60=4500
312 | entryTriggerM1=20
313 | entryTriggerM15=50
314 | entryTriggerM60=100
315 | stopLossFactorM1=2.0
316 | stopLossFactorM15=0.8
317 | stopLossFactorM60=0.8
318 | takeProfFactorM1=1.0
319 | takeProfFactorM15=1.0
320 | takeProfFactorM60=1.0
321 | predictor_periodM1=1
322 | predictor_periodM15=15
323 | predictor_periodH1=60
324 | closeAllOnFridays=true
325 | use_market_type=true
326 | Header3=----------Position Sizing Settings-----------
327 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
328 | Lots=0.0
329 | IsSizingOn=true
330 | Risk=1.0
331 | MaxPositionsAllowed=1
332 | Header4=----------TP & SL Settings-----------
333 | UseFixedStopLoss=true
334 | FixedStopLoss=0.0
335 | IsVolatilityStopOn=true
336 | VolBasedSLMultiplier=4.0
337 | UseFixedTakeProfit=true
338 | FixedTakeProfit=0.0
339 | IsVolatilityTakeProfitOn=true
340 | VolBasedTPMultiplier=6.0
341 | Header5=----------Hidden TP & SL Settings-----------
342 | UseHiddenStopLoss=false
343 | FixedStopLoss_Hidden=0.0
344 | IsVolatilityStopLossOn_Hidden=false
345 | VolBasedSLMultiplier_Hidden=0.0
346 | UseHiddenTakeProfit=false
347 | FixedTakeProfit_Hidden=0.0
348 | IsVolatilityTakeProfitOn_Hidden=false
349 | VolBasedTPMultiplier_Hidden=0.0
350 | Header6=----------Breakeven Stops Settings-----------
351 | UseBreakevenStops=false
352 | BreakevenBuffer=0.0
353 | Header7=----------Hidden Breakeven Stops Settings-----------
354 | UseHiddenBreakevenStops=false
355 | BreakevenBuffer_Hidden=0.0
356 | Header8=----------Trailing Stops Settings-----------
357 | UseTrailingStops=false
358 | TrailingStopDistance=0.0
359 | TrailingStopBuffer=0.0
360 | Header9=----------Hidden Trailing Stops Settings-----------
361 | UseHiddenTrailingStops=false
362 | TrailingStopDistance_Hidden=0.0
363 | TrailingStopBuffer_Hidden=0.0
364 | Header10=----------Volatility Trailing Stops Settings-----------
365 | UseVolTrailingStops=false
366 | VolTrailingDistMultiplier=0.0
367 | VolTrailingBuffMultiplier=0.0
368 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
369 | UseHiddenVolTrailing=false
370 | VolTrailingDistMultiplier_Hidden=0.0
371 | VolTrailingBuffMultiplier_Hidden=0.0
372 | Header12=----------Volatility Measurement Settings-----------
373 | atr_period=14
374 | Header13=----------Set Max Loss Limit-----------
375 | IsLossLimitActivated=false
376 | LossLimitPercent=50.0
377 | Header14=----------Set Max Volatility Limit-----------
378 | IsVolLimitActivated=false
379 | VolatilityMultiplier=3.0
380 | ATRTimeframe=60
381 | ATRPeriod=14
382 |
383 |
384 |
385 |
386 |
--------------------------------------------------------------------------------
/mt4_profile/T1_FALCON_F2/chart02.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925660681491
3 | comment=Trade is allowed
4 | symbol=USDCHF
5 | period=15
6 | leftpos=56722
7 | digits=5
8 | scale=1
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
219 |
236 |
253 |
271 |
288 |
305 |
306 |
307 |
308 |
309 | name=FALCON_F2\Falcon_F2
310 | flags=343
311 | window_num=0
312 |
313 | Header1=----------EA General Settings-----------
314 | MagicNumber=8139101
315 | TerminalType=1
316 | R_Management=true
317 | Slippage=3
318 | IsECNbroker=false
319 | OnJournaling=false
320 | EnableDashboard=true
321 | Header2=----------Trading Rules Variables -----------
322 | RobotBehavior=daily
323 | usePredictedSL=false
324 | usePredictedTP=false
325 | TimeMaxHoldM1=75
326 | TimeMaxHoldM15=1125
327 | TimeMaxHoldM60=4500
328 | entryTriggerM1=20
329 | entryTriggerM15=50
330 | entryTriggerM60=100
331 | stopLossFactorM1=2.0
332 | stopLossFactorM15=0.8
333 | stopLossFactorM60=0.8
334 | takeProfFactorM1=1.0
335 | takeProfFactorM15=1.0
336 | takeProfFactorM60=1.0
337 | predictor_periodM1=1
338 | predictor_periodM15=15
339 | predictor_periodH1=60
340 | closeAllOnFridays=true
341 | use_market_type=true
342 | Header3=----------Position Sizing Settings-----------
343 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
344 | Lots=0.01
345 | IsSizingOn=false
346 | Risk=1.0
347 | MaxPositionsAllowed=25
348 | Header4=----------TP & SL Settings-----------
349 | UseFixedStopLoss=true
350 | FixedStopLoss=0.0
351 | IsVolatilityStopOn=true
352 | VolBasedSLMultiplier=4.0
353 | UseFixedTakeProfit=true
354 | FixedTakeProfit=0.0
355 | IsVolatilityTakeProfitOn=true
356 | VolBasedTPMultiplier=6.0
357 | Header5=----------Hidden TP & SL Settings-----------
358 | UseHiddenStopLoss=false
359 | FixedStopLoss_Hidden=0.0
360 | IsVolatilityStopLossOn_Hidden=false
361 | VolBasedSLMultiplier_Hidden=0.0
362 | UseHiddenTakeProfit=false
363 | FixedTakeProfit_Hidden=0.0
364 | IsVolatilityTakeProfitOn_Hidden=false
365 | VolBasedTPMultiplier_Hidden=0.0
366 | Header6=----------Breakeven Stops Settings-----------
367 | UseBreakevenStops=false
368 | BreakevenBuffer=0.0
369 | Header7=----------Hidden Breakeven Stops Settings-----------
370 | UseHiddenBreakevenStops=false
371 | BreakevenBuffer_Hidden=0.0
372 | Header8=----------Trailing Stops Settings-----------
373 | UseTrailingStops=false
374 | TrailingStopDistance=0.0
375 | TrailingStopBuffer=0.0
376 | Header9=----------Hidden Trailing Stops Settings-----------
377 | UseHiddenTrailingStops=false
378 | TrailingStopDistance_Hidden=0.0
379 | TrailingStopBuffer_Hidden=0.0
380 | Header10=----------Volatility Trailing Stops Settings-----------
381 | UseVolTrailingStops=false
382 | VolTrailingDistMultiplier=0.0
383 | VolTrailingBuffMultiplier=0.0
384 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
385 | UseHiddenVolTrailing=false
386 | VolTrailingDistMultiplier_Hidden=0.0
387 | VolTrailingBuffMultiplier_Hidden=0.0
388 | Header12=----------Volatility Measurement Settings-----------
389 | atr_period=14
390 | Header13=----------Set Max Loss Limit-----------
391 | IsLossLimitActivated=false
392 | LossLimitPercent=50.0
393 | Header14=----------Set Max Volatility Limit-----------
394 | IsVolLimitActivated=false
395 | VolatilityMultiplier=3.0
396 | ATRTimeframe=60
397 | ATRPeriod=14
398 |
399 |
400 |
401 |
402 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart19.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133852
3 | comment=Trade is not allowed
4 | symbol=CHFJPY
5 | period=15
6 | leftpos=47022
7 | digits=3
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
114 |
133 |
151 |
168 |
185 |
202 |
221 |
239 |
256 |
273 |
290 |
309 |
310 |
311 |
312 |
313 | name=FALCON_F2\Falcon_F2
314 | flags=343
315 | window_num=0
316 |
317 | Header1=----------EA General Settings-----------
318 | MagicNumber=8139318
319 | TerminalType=0
320 | R_Management=true
321 | Slippage=3
322 | IsECNbroker=false
323 | OnJournaling=false
324 | EnableDashboard=true
325 | Header2=----------Trading Rules Variables -----------
326 | RobotBehavior=daily
327 | usePredictedSL=false
328 | usePredictedTP=false
329 | TimeMaxHoldM1=75
330 | TimeMaxHoldM15=1125
331 | TimeMaxHoldM60=4500
332 | entryTriggerM1=20
333 | entryTriggerM15=50
334 | entryTriggerM60=100
335 | stopLossFactorM1=2.0
336 | stopLossFactorM15=0.8
337 | stopLossFactorM60=0.8
338 | takeProfFactorM1=1.0
339 | takeProfFactorM15=1.0
340 | takeProfFactorM60=1.0
341 | predictor_periodM1=1
342 | predictor_periodM15=15
343 | predictor_periodH1=60
344 | closeAllOnFridays=true
345 | use_market_type=true
346 | Header3=----------Position Sizing Settings-----------
347 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
348 | Lots=0.0
349 | IsSizingOn=true
350 | Risk=1.0
351 | MaxPositionsAllowed=1
352 | Header4=----------TP & SL Settings-----------
353 | UseFixedStopLoss=true
354 | FixedStopLoss=0.0
355 | IsVolatilityStopOn=true
356 | VolBasedSLMultiplier=4.0
357 | UseFixedTakeProfit=true
358 | FixedTakeProfit=0.0
359 | IsVolatilityTakeProfitOn=true
360 | VolBasedTPMultiplier=6.0
361 | Header5=----------Hidden TP & SL Settings-----------
362 | UseHiddenStopLoss=false
363 | FixedStopLoss_Hidden=0.0
364 | IsVolatilityStopLossOn_Hidden=false
365 | VolBasedSLMultiplier_Hidden=0.0
366 | UseHiddenTakeProfit=false
367 | FixedTakeProfit_Hidden=0.0
368 | IsVolatilityTakeProfitOn_Hidden=false
369 | VolBasedTPMultiplier_Hidden=0.0
370 | Header6=----------Breakeven Stops Settings-----------
371 | UseBreakevenStops=false
372 | BreakevenBuffer=0.0
373 | Header7=----------Hidden Breakeven Stops Settings-----------
374 | UseHiddenBreakevenStops=false
375 | BreakevenBuffer_Hidden=0.0
376 | Header8=----------Trailing Stops Settings-----------
377 | UseTrailingStops=false
378 | TrailingStopDistance=0.0
379 | TrailingStopBuffer=0.0
380 | Header9=----------Hidden Trailing Stops Settings-----------
381 | UseHiddenTrailingStops=false
382 | TrailingStopDistance_Hidden=0.0
383 | TrailingStopBuffer_Hidden=0.0
384 | Header10=----------Volatility Trailing Stops Settings-----------
385 | UseVolTrailingStops=false
386 | VolTrailingDistMultiplier=0.0
387 | VolTrailingBuffMultiplier=0.0
388 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
389 | UseHiddenVolTrailing=false
390 | VolTrailingDistMultiplier_Hidden=0.0
391 | VolTrailingBuffMultiplier_Hidden=0.0
392 | Header12=----------Volatility Measurement Settings-----------
393 | atr_period=14
394 | Header13=----------Set Max Loss Limit-----------
395 | IsLossLimitActivated=false
396 | LossLimitPercent=50.0
397 | Header14=----------Set Max Volatility Limit-----------
398 | IsVolLimitActivated=false
399 | VolatilityMultiplier=3.0
400 | ATRTimeframe=60
401 | ATRPeriod=14
402 |
403 |
404 |
405 |
406 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart20.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133853
3 | comment=Trade is not allowed
4 | symbol=EURNZD
5 | period=15
6 | leftpos=47043
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
219 |
236 |
253 |
271 |
288 |
305 |
306 |
307 |
308 |
309 | name=FALCON_F2\Falcon_F2
310 | flags=343
311 | window_num=0
312 |
313 | Header1=----------EA General Settings-----------
314 | MagicNumber=8139319
315 | TerminalType=0
316 | R_Management=true
317 | Slippage=3
318 | IsECNbroker=false
319 | OnJournaling=false
320 | EnableDashboard=true
321 | Header2=----------Trading Rules Variables -----------
322 | RobotBehavior=daily
323 | usePredictedSL=false
324 | usePredictedTP=false
325 | TimeMaxHoldM1=75
326 | TimeMaxHoldM15=1125
327 | TimeMaxHoldM60=4500
328 | entryTriggerM1=20
329 | entryTriggerM15=50
330 | entryTriggerM60=100
331 | stopLossFactorM1=2.0
332 | stopLossFactorM15=0.8
333 | stopLossFactorM60=0.8
334 | takeProfFactorM1=1.0
335 | takeProfFactorM15=1.0
336 | takeProfFactorM60=1.0
337 | predictor_periodM1=1
338 | predictor_periodM15=15
339 | predictor_periodH1=60
340 | closeAllOnFridays=true
341 | use_market_type=true
342 | Header3=----------Position Sizing Settings-----------
343 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
344 | Lots=0.0
345 | IsSizingOn=true
346 | Risk=1.0
347 | MaxPositionsAllowed=1
348 | Header4=----------TP & SL Settings-----------
349 | UseFixedStopLoss=true
350 | FixedStopLoss=0.0
351 | IsVolatilityStopOn=true
352 | VolBasedSLMultiplier=4.0
353 | UseFixedTakeProfit=true
354 | FixedTakeProfit=0.0
355 | IsVolatilityTakeProfitOn=true
356 | VolBasedTPMultiplier=6.0
357 | Header5=----------Hidden TP & SL Settings-----------
358 | UseHiddenStopLoss=false
359 | FixedStopLoss_Hidden=0.0
360 | IsVolatilityStopLossOn_Hidden=false
361 | VolBasedSLMultiplier_Hidden=0.0
362 | UseHiddenTakeProfit=false
363 | FixedTakeProfit_Hidden=0.0
364 | IsVolatilityTakeProfitOn_Hidden=false
365 | VolBasedTPMultiplier_Hidden=0.0
366 | Header6=----------Breakeven Stops Settings-----------
367 | UseBreakevenStops=false
368 | BreakevenBuffer=0.0
369 | Header7=----------Hidden Breakeven Stops Settings-----------
370 | UseHiddenBreakevenStops=false
371 | BreakevenBuffer_Hidden=0.0
372 | Header8=----------Trailing Stops Settings-----------
373 | UseTrailingStops=false
374 | TrailingStopDistance=0.0
375 | TrailingStopBuffer=0.0
376 | Header9=----------Hidden Trailing Stops Settings-----------
377 | UseHiddenTrailingStops=false
378 | TrailingStopDistance_Hidden=0.0
379 | TrailingStopBuffer_Hidden=0.0
380 | Header10=----------Volatility Trailing Stops Settings-----------
381 | UseVolTrailingStops=false
382 | VolTrailingDistMultiplier=0.0
383 | VolTrailingBuffMultiplier=0.0
384 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
385 | UseHiddenVolTrailing=false
386 | VolTrailingDistMultiplier_Hidden=0.0
387 | VolTrailingBuffMultiplier_Hidden=0.0
388 | Header12=----------Volatility Measurement Settings-----------
389 | atr_period=14
390 | Header13=----------Set Max Loss Limit-----------
391 | IsLossLimitActivated=false
392 | LossLimitPercent=50.0
393 | Header14=----------Set Max Volatility Limit-----------
394 | IsVolLimitActivated=false
395 | VolatilityMultiplier=3.0
396 | ATRTimeframe=60
397 | ATRPeriod=14
398 |
399 |
400 |
401 |
402 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart11.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133844
3 | comment=Trade is not allowed
4 | symbol=EURJPY
5 | period=15
6 | leftpos=47023
7 | digits=3
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
219 |
236 |
253 |
271 |
288 |
305 |
323 |
340 |
357 |
358 |
359 |
360 |
361 | name=FALCON_F2\Falcon_F2
362 | flags=343
363 | window_num=0
364 |
365 | Header1=----------EA General Settings-----------
366 | MagicNumber=8139310
367 | TerminalType=0
368 | R_Management=true
369 | Slippage=3
370 | IsECNbroker=false
371 | OnJournaling=false
372 | EnableDashboard=true
373 | Header2=----------Trading Rules Variables -----------
374 | RobotBehavior=daily
375 | usePredictedSL=false
376 | usePredictedTP=false
377 | TimeMaxHoldM1=75
378 | TimeMaxHoldM15=1125
379 | TimeMaxHoldM60=4500
380 | entryTriggerM1=20
381 | entryTriggerM15=50
382 | entryTriggerM60=100
383 | stopLossFactorM1=2.0
384 | stopLossFactorM15=0.8
385 | stopLossFactorM60=0.8
386 | takeProfFactorM1=1.0
387 | takeProfFactorM15=1.0
388 | takeProfFactorM60=1.0
389 | predictor_periodM1=1
390 | predictor_periodM15=15
391 | predictor_periodH1=60
392 | closeAllOnFridays=true
393 | use_market_type=true
394 | Header3=----------Position Sizing Settings-----------
395 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
396 | Lots=0.0
397 | IsSizingOn=true
398 | Risk=1.0
399 | MaxPositionsAllowed=1
400 | Header4=----------TP & SL Settings-----------
401 | UseFixedStopLoss=true
402 | FixedStopLoss=0.0
403 | IsVolatilityStopOn=true
404 | VolBasedSLMultiplier=4.0
405 | UseFixedTakeProfit=true
406 | FixedTakeProfit=0.0
407 | IsVolatilityTakeProfitOn=true
408 | VolBasedTPMultiplier=6.0
409 | Header5=----------Hidden TP & SL Settings-----------
410 | UseHiddenStopLoss=false
411 | FixedStopLoss_Hidden=0.0
412 | IsVolatilityStopLossOn_Hidden=false
413 | VolBasedSLMultiplier_Hidden=0.0
414 | UseHiddenTakeProfit=false
415 | FixedTakeProfit_Hidden=0.0
416 | IsVolatilityTakeProfitOn_Hidden=false
417 | VolBasedTPMultiplier_Hidden=0.0
418 | Header6=----------Breakeven Stops Settings-----------
419 | UseBreakevenStops=false
420 | BreakevenBuffer=0.0
421 | Header7=----------Hidden Breakeven Stops Settings-----------
422 | UseHiddenBreakevenStops=false
423 | BreakevenBuffer_Hidden=0.0
424 | Header8=----------Trailing Stops Settings-----------
425 | UseTrailingStops=false
426 | TrailingStopDistance=0.0
427 | TrailingStopBuffer=0.0
428 | Header9=----------Hidden Trailing Stops Settings-----------
429 | UseHiddenTrailingStops=false
430 | TrailingStopDistance_Hidden=0.0
431 | TrailingStopBuffer_Hidden=0.0
432 | Header10=----------Volatility Trailing Stops Settings-----------
433 | UseVolTrailingStops=false
434 | VolTrailingDistMultiplier=0.0
435 | VolTrailingBuffMultiplier=0.0
436 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
437 | UseHiddenVolTrailing=false
438 | VolTrailingDistMultiplier_Hidden=0.0
439 | VolTrailingBuffMultiplier_Hidden=0.0
440 | Header12=----------Volatility Measurement Settings-----------
441 | atr_period=14
442 | Header13=----------Set Max Loss Limit-----------
443 | IsLossLimitActivated=false
444 | LossLimitPercent=50.0
445 | Header14=----------Set Max Volatility Limit-----------
446 | IsVolLimitActivated=false
447 | VolatilityMultiplier=3.0
448 | ATRTimeframe=60
449 | ATRPeriod=14
450 |
451 |
452 |
453 |
454 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart09.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133842
3 | comment=Trade is not allowed
4 | symbol=EURAUD
5 | period=15
6 | leftpos=47043
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
114 |
133 |
151 |
168 |
185 |
203 |
220 |
237 |
255 |
272 |
289 |
307 |
324 |
341 |
359 |
376 |
393 |
410 |
429 |
430 |
431 |
432 |
433 | name=FALCON_F2\Falcon_F2
434 | flags=343
435 | window_num=0
436 |
437 | Header1=----------EA General Settings-----------
438 | MagicNumber=8139308
439 | TerminalType=0
440 | R_Management=true
441 | Slippage=3
442 | IsECNbroker=false
443 | OnJournaling=false
444 | EnableDashboard=true
445 | Header2=----------Trading Rules Variables -----------
446 | RobotBehavior=daily
447 | usePredictedSL=false
448 | usePredictedTP=false
449 | TimeMaxHoldM1=75
450 | TimeMaxHoldM15=1125
451 | TimeMaxHoldM60=4500
452 | entryTriggerM1=20
453 | entryTriggerM15=50
454 | entryTriggerM60=100
455 | stopLossFactorM1=2.0
456 | stopLossFactorM15=0.8
457 | stopLossFactorM60=0.8
458 | takeProfFactorM1=1.0
459 | takeProfFactorM15=1.0
460 | takeProfFactorM60=1.0
461 | predictor_periodM1=1
462 | predictor_periodM15=15
463 | predictor_periodH1=60
464 | closeAllOnFridays=true
465 | use_market_type=true
466 | Header3=----------Position Sizing Settings-----------
467 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
468 | Lots=0.0
469 | IsSizingOn=true
470 | Risk=1.0
471 | MaxPositionsAllowed=1
472 | Header4=----------TP & SL Settings-----------
473 | UseFixedStopLoss=true
474 | FixedStopLoss=0.0
475 | IsVolatilityStopOn=true
476 | VolBasedSLMultiplier=4.0
477 | UseFixedTakeProfit=true
478 | FixedTakeProfit=0.0
479 | IsVolatilityTakeProfitOn=true
480 | VolBasedTPMultiplier=6.0
481 | Header5=----------Hidden TP & SL Settings-----------
482 | UseHiddenStopLoss=false
483 | FixedStopLoss_Hidden=0.0
484 | IsVolatilityStopLossOn_Hidden=false
485 | VolBasedSLMultiplier_Hidden=0.0
486 | UseHiddenTakeProfit=false
487 | FixedTakeProfit_Hidden=0.0
488 | IsVolatilityTakeProfitOn_Hidden=false
489 | VolBasedTPMultiplier_Hidden=0.0
490 | Header6=----------Breakeven Stops Settings-----------
491 | UseBreakevenStops=false
492 | BreakevenBuffer=0.0
493 | Header7=----------Hidden Breakeven Stops Settings-----------
494 | UseHiddenBreakevenStops=false
495 | BreakevenBuffer_Hidden=0.0
496 | Header8=----------Trailing Stops Settings-----------
497 | UseTrailingStops=false
498 | TrailingStopDistance=0.0
499 | TrailingStopBuffer=0.0
500 | Header9=----------Hidden Trailing Stops Settings-----------
501 | UseHiddenTrailingStops=false
502 | TrailingStopDistance_Hidden=0.0
503 | TrailingStopBuffer_Hidden=0.0
504 | Header10=----------Volatility Trailing Stops Settings-----------
505 | UseVolTrailingStops=false
506 | VolTrailingDistMultiplier=0.0
507 | VolTrailingBuffMultiplier=0.0
508 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
509 | UseHiddenVolTrailing=false
510 | VolTrailingDistMultiplier_Hidden=0.0
511 | VolTrailingBuffMultiplier_Hidden=0.0
512 | Header12=----------Volatility Measurement Settings-----------
513 | atr_period=14
514 | Header13=----------Set Max Loss Limit-----------
515 | IsLossLimitActivated=false
516 | LossLimitPercent=50.0
517 | Header14=----------Set Max Volatility Limit-----------
518 | IsVolLimitActivated=false
519 | VolatilityMultiplier=3.0
520 | ATRTimeframe=60
521 | ATRPeriod=14
522 |
523 |
524 |
525 |
526 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart25.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133858
3 | comment=Trade is not allowed
4 | symbol=GBPAUD
5 | period=15
6 | leftpos=44996
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
218 |
237 |
255 |
272 |
289 |
307 |
324 |
341 |
359 |
376 |
393 |
411 |
428 |
445 |
446 |
447 |
448 |
449 | name=FALCON_F2\Falcon_F2
450 | flags=343
451 | window_num=0
452 |
453 | Header1=----------EA General Settings-----------
454 | MagicNumber=8139324
455 | TerminalType=0
456 | R_Management=true
457 | Slippage=3
458 | IsECNbroker=false
459 | OnJournaling=false
460 | EnableDashboard=true
461 | Header2=----------Trading Rules Variables -----------
462 | RobotBehavior=daily
463 | usePredictedSL=false
464 | usePredictedTP=false
465 | TimeMaxHoldM1=75
466 | TimeMaxHoldM15=1125
467 | TimeMaxHoldM60=4500
468 | entryTriggerM1=20
469 | entryTriggerM15=50
470 | entryTriggerM60=100
471 | stopLossFactorM1=2.0
472 | stopLossFactorM15=0.8
473 | stopLossFactorM60=0.8
474 | takeProfFactorM1=1.0
475 | takeProfFactorM15=1.0
476 | takeProfFactorM60=1.0
477 | predictor_periodM1=1
478 | predictor_periodM15=15
479 | predictor_periodH1=60
480 | closeAllOnFridays=true
481 | use_market_type=true
482 | Header3=----------Position Sizing Settings-----------
483 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
484 | Lots=0.0
485 | IsSizingOn=true
486 | Risk=1.0
487 | MaxPositionsAllowed=1
488 | Header4=----------TP & SL Settings-----------
489 | UseFixedStopLoss=true
490 | FixedStopLoss=0.0
491 | IsVolatilityStopOn=true
492 | VolBasedSLMultiplier=4.0
493 | UseFixedTakeProfit=true
494 | FixedTakeProfit=0.0
495 | IsVolatilityTakeProfitOn=true
496 | VolBasedTPMultiplier=6.0
497 | Header5=----------Hidden TP & SL Settings-----------
498 | UseHiddenStopLoss=false
499 | FixedStopLoss_Hidden=0.0
500 | IsVolatilityStopLossOn_Hidden=false
501 | VolBasedSLMultiplier_Hidden=0.0
502 | UseHiddenTakeProfit=false
503 | FixedTakeProfit_Hidden=0.0
504 | IsVolatilityTakeProfitOn_Hidden=false
505 | VolBasedTPMultiplier_Hidden=0.0
506 | Header6=----------Breakeven Stops Settings-----------
507 | UseBreakevenStops=false
508 | BreakevenBuffer=0.0
509 | Header7=----------Hidden Breakeven Stops Settings-----------
510 | UseHiddenBreakevenStops=false
511 | BreakevenBuffer_Hidden=0.0
512 | Header8=----------Trailing Stops Settings-----------
513 | UseTrailingStops=false
514 | TrailingStopDistance=0.0
515 | TrailingStopBuffer=0.0
516 | Header9=----------Hidden Trailing Stops Settings-----------
517 | UseHiddenTrailingStops=false
518 | TrailingStopDistance_Hidden=0.0
519 | TrailingStopBuffer_Hidden=0.0
520 | Header10=----------Volatility Trailing Stops Settings-----------
521 | UseVolTrailingStops=false
522 | VolTrailingDistMultiplier=0.0
523 | VolTrailingBuffMultiplier=0.0
524 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
525 | UseHiddenVolTrailing=false
526 | VolTrailingDistMultiplier_Hidden=0.0
527 | VolTrailingBuffMultiplier_Hidden=0.0
528 | Header12=----------Volatility Measurement Settings-----------
529 | atr_period=14
530 | Header13=----------Set Max Loss Limit-----------
531 | IsLossLimitActivated=false
532 | LossLimitPercent=50.0
533 | Header14=----------Set Max Volatility Limit-----------
534 | IsVolLimitActivated=false
535 | VolatilityMultiplier=3.0
536 | ATRTimeframe=60
537 | ATRPeriod=14
538 |
539 |
540 |
541 |
542 |
--------------------------------------------------------------------------------
/mt4_profile/T3_FALCON_F2/chart14.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925827133847
3 | comment=Trade is not allowed
4 | symbol=GBPJPY
5 | period=15
6 | leftpos=47022
7 | digits=3
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
167 |
184 |
201 |
219 |
236 |
253 |
271 |
288 |
305 |
323 |
340 |
357 |
375 |
392 |
409 |
427 |
444 |
461 |
462 |
463 |
464 |
465 | name=FALCON_F2\Falcon_F2
466 | flags=343
467 | window_num=0
468 |
469 | Header1=----------EA General Settings-----------
470 | MagicNumber=8139313
471 | TerminalType=0
472 | R_Management=true
473 | Slippage=3
474 | IsECNbroker=false
475 | OnJournaling=false
476 | EnableDashboard=true
477 | Header2=----------Trading Rules Variables -----------
478 | RobotBehavior=daily
479 | usePredictedSL=false
480 | usePredictedTP=false
481 | TimeMaxHoldM1=75
482 | TimeMaxHoldM15=1125
483 | TimeMaxHoldM60=4500
484 | entryTriggerM1=20
485 | entryTriggerM15=50
486 | entryTriggerM60=100
487 | stopLossFactorM1=2.0
488 | stopLossFactorM15=0.8
489 | stopLossFactorM60=0.8
490 | takeProfFactorM1=1.0
491 | takeProfFactorM15=1.0
492 | takeProfFactorM60=1.0
493 | predictor_periodM1=1
494 | predictor_periodM15=15
495 | predictor_periodH1=60
496 | closeAllOnFridays=true
497 | use_market_type=true
498 | Header3=----------Position Sizing Settings-----------
499 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
500 | Lots=0.0
501 | IsSizingOn=true
502 | Risk=1.0
503 | MaxPositionsAllowed=1
504 | Header4=----------TP & SL Settings-----------
505 | UseFixedStopLoss=true
506 | FixedStopLoss=0.0
507 | IsVolatilityStopOn=true
508 | VolBasedSLMultiplier=4.0
509 | UseFixedTakeProfit=true
510 | FixedTakeProfit=0.0
511 | IsVolatilityTakeProfitOn=true
512 | VolBasedTPMultiplier=6.0
513 | Header5=----------Hidden TP & SL Settings-----------
514 | UseHiddenStopLoss=false
515 | FixedStopLoss_Hidden=0.0
516 | IsVolatilityStopLossOn_Hidden=false
517 | VolBasedSLMultiplier_Hidden=0.0
518 | UseHiddenTakeProfit=false
519 | FixedTakeProfit_Hidden=0.0
520 | IsVolatilityTakeProfitOn_Hidden=false
521 | VolBasedTPMultiplier_Hidden=0.0
522 | Header6=----------Breakeven Stops Settings-----------
523 | UseBreakevenStops=false
524 | BreakevenBuffer=0.0
525 | Header7=----------Hidden Breakeven Stops Settings-----------
526 | UseHiddenBreakevenStops=false
527 | BreakevenBuffer_Hidden=0.0
528 | Header8=----------Trailing Stops Settings-----------
529 | UseTrailingStops=false
530 | TrailingStopDistance=0.0
531 | TrailingStopBuffer=0.0
532 | Header9=----------Hidden Trailing Stops Settings-----------
533 | UseHiddenTrailingStops=false
534 | TrailingStopDistance_Hidden=0.0
535 | TrailingStopBuffer_Hidden=0.0
536 | Header10=----------Volatility Trailing Stops Settings-----------
537 | UseVolTrailingStops=false
538 | VolTrailingDistMultiplier=0.0
539 | VolTrailingBuffMultiplier=0.0
540 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
541 | UseHiddenVolTrailing=false
542 | VolTrailingDistMultiplier_Hidden=0.0
543 | VolTrailingBuffMultiplier_Hidden=0.0
544 | Header12=----------Volatility Measurement Settings-----------
545 | atr_period=14
546 | Header13=----------Set Max Loss Limit-----------
547 | IsLossLimitActivated=false
548 | LossLimitPercent=50.0
549 | Header14=----------Set Max Volatility Limit-----------
550 | IsVolLimitActivated=false
551 | VolatilityMultiplier=3.0
552 | ATRTimeframe=60
553 | ATRPeriod=14
554 |
555 |
556 |
557 |
558 |
--------------------------------------------------------------------------------
/mt4_profile/T1_FALCON_F2/chart27.chr:
--------------------------------------------------------------------------------
1 |
2 | id=131185925660681584
3 | comment=Trade is allowed
4 | symbol=NZDCHF
5 | period=15
6 | leftpos=56949
7 | digits=5
8 | scale=8
9 | graph=1
10 | fore=1
11 | grid=0
12 | volume=0
13 | scroll=1
14 | shift=1
15 | ohlc=1
16 | one_click=0
17 | one_click_btn=1
18 | askline=0
19 | days=1
20 | descriptions=0
21 | shift_size=20
22 | fixed_pos=0
23 | window_left=0
24 | window_top=0
25 | window_right=363
26 | window_bottom=431
27 | window_type=1
28 | background_color=16777215
29 | foreground_color=0
30 | barup_color=0
31 | bardown_color=0
32 | bullcandle_color=16777215
33 | bearcandle_color=0
34 | chartline_color=0
35 | volumes_color=32768
36 | grid_color=12632256
37 | askline_color=17919
38 | stops_color=17919
39 |
40 |
41 | height=148
42 | fixed_height=0
43 |
44 | name=main
45 |
63 |
80 |
97 |
115 |
132 |
149 |
166 |
185 |
202 |
221 |
239 |
256 |
273 |
291 |
308 |
325 |
343 |
360 |
377 |
395 |
412 |
429 |
447 |
464 |
481 |
482 |
483 |
484 |
485 | name=FALCON_F2\Falcon_F2
486 | flags=343
487 | window_num=0
488 |
489 | Header1=----------EA General Settings-----------
490 | MagicNumber=8139126
491 | TerminalType=1
492 | R_Management=true
493 | Slippage=3
494 | IsECNbroker=false
495 | OnJournaling=false
496 | EnableDashboard=true
497 | Header2=----------Trading Rules Variables -----------
498 | RobotBehavior=daily
499 | usePredictedSL=false
500 | usePredictedTP=false
501 | TimeMaxHoldM1=75
502 | TimeMaxHoldM15=1125
503 | TimeMaxHoldM60=4500
504 | entryTriggerM1=20
505 | entryTriggerM15=50
506 | entryTriggerM60=100
507 | stopLossFactorM1=2.0
508 | stopLossFactorM15=0.8
509 | stopLossFactorM60=0.8
510 | takeProfFactorM1=1.0
511 | takeProfFactorM15=1.0
512 | takeProfFactorM60=1.0
513 | predictor_periodM1=1
514 | predictor_periodM15=15
515 | predictor_periodH1=60
516 | closeAllOnFridays=true
517 | use_market_type=true
518 | Header3=----------Position Sizing Settings-----------
519 | Lot_explanation=If IsSizingOn = true, Lots variable will be ignored
520 | Lots=0.01
521 | IsSizingOn=false
522 | Risk=1.0
523 | MaxPositionsAllowed=25
524 | Header4=----------TP & SL Settings-----------
525 | UseFixedStopLoss=true
526 | FixedStopLoss=0.0
527 | IsVolatilityStopOn=true
528 | VolBasedSLMultiplier=4.0
529 | UseFixedTakeProfit=true
530 | FixedTakeProfit=0.0
531 | IsVolatilityTakeProfitOn=true
532 | VolBasedTPMultiplier=6.0
533 | Header5=----------Hidden TP & SL Settings-----------
534 | UseHiddenStopLoss=false
535 | FixedStopLoss_Hidden=0.0
536 | IsVolatilityStopLossOn_Hidden=false
537 | VolBasedSLMultiplier_Hidden=0.0
538 | UseHiddenTakeProfit=false
539 | FixedTakeProfit_Hidden=0.0
540 | IsVolatilityTakeProfitOn_Hidden=false
541 | VolBasedTPMultiplier_Hidden=0.0
542 | Header6=----------Breakeven Stops Settings-----------
543 | UseBreakevenStops=false
544 | BreakevenBuffer=0.0
545 | Header7=----------Hidden Breakeven Stops Settings-----------
546 | UseHiddenBreakevenStops=false
547 | BreakevenBuffer_Hidden=0.0
548 | Header8=----------Trailing Stops Settings-----------
549 | UseTrailingStops=false
550 | TrailingStopDistance=0.0
551 | TrailingStopBuffer=0.0
552 | Header9=----------Hidden Trailing Stops Settings-----------
553 | UseHiddenTrailingStops=false
554 | TrailingStopDistance_Hidden=0.0
555 | TrailingStopBuffer_Hidden=0.0
556 | Header10=----------Volatility Trailing Stops Settings-----------
557 | UseVolTrailingStops=false
558 | VolTrailingDistMultiplier=0.0
559 | VolTrailingBuffMultiplier=0.0
560 | Header11=----------Hidden Volatility Trailing Stops Settings-----------
561 | UseHiddenVolTrailing=false
562 | VolTrailingDistMultiplier_Hidden=0.0
563 | VolTrailingBuffMultiplier_Hidden=0.0
564 | Header12=----------Volatility Measurement Settings-----------
565 | atr_period=14
566 | Header13=----------Set Max Loss Limit-----------
567 | IsLossLimitActivated=false
568 | LossLimitPercent=50.0
569 | Header14=----------Set Max Volatility Limit-----------
570 | IsVolLimitActivated=false
571 | VolatilityMultiplier=3.0
572 | ATRTimeframe=60
573 | ATRPeriod=14
574 |
575 |
576 |
577 |
578 |
--------------------------------------------------------------------------------