đ§ Advanced Settings
Deep dive into advanced configuration options and optimization techniques
Market TypeAny Condition
Best TimeframesAll TFs
Difficultyâī¸ Medium
đ Overview
⨠Key Features
âī¸ How It Works
Detailed explanation coming soon...
đĄ Best Practices
đī¸ Settings & Configuration
Configuration details coming soon...
đ Complete Guide
Advanced Settings Guide
This comprehensive guide covers advanced settings and configuration options for experienced RelicusRoad Pro users who want to fine-tune their system for optimal performance.
Settings Architecture
Configuration Hierarchy
Global Settings (Account Type)
â
Strategy Settings (1-7 or Custom)
â
Feature Settings (Individual indicators)
â
Display Settings (Visual preferences)
â
Alert Settings (Notifications)
Settings Categories
- Core Settings: Account and strategy
- Calculation Settings: Indicator parameters
- Display Settings: Visual configuration
- Performance Settings: Resource optimization
- Risk Settings: Safety parameters
Core Configuration
Account Settings Deep Dive
Challenge Account Parameters:
[FTMO_LIVE]
Daily_Drawdown = 5%
Max_Drawdown = 10%
Profit_Target = 10%
Min_Trading_Days = 10
News_Filter = HIGH_IMPACT
Position_Time_Limit = NONE
Weekend_Holding = ALLOWED
[CUSTOM_PROP]
Daily_Drawdown = USER_DEFINED
Max_Drawdown = USER_DEFINED
Profit_Target = USER_DEFINED
Custom_Rules = CONFIGURABLE
Strategy Engine Settings
Strategy Optimization:
// Strategy 4 Example Configuration
{
"base_strategy": 4,
"modifications": {
"entry_confirmation": 2, // bars
"exit_early": true,
"partial_profits": [30, 50, 20], // percentages
"trail_stop": "DYNAMIC",
"news_pause": 30 // minutes
}
}
Calculation Parameters
Liquidity Level Mathematics
Advanced Parameters:
Period: 20-200 (default: 50)
Deviation: 1.0-3.0 (default: 2.0)
Smoothing: 0-10 (default: 3)
Calculation: [WEIGHTED, SIMPLE, EXPONENTIAL]
Adaptation: [STATIC, DYNAMIC, HYBRID]
Fine-Tuning Guide:
- Lower period = More responsive
- Higher deviation = Fewer signals
- More smoothing = Stable levels
- Weighted calc = Recent bias
Signal Line Formulas
MACD Configuration:
Fast_EMA: 12 (8-20 range)
Slow_EMA: 26 (20-35 range)
Signal_Line: 9 (5-15 range)
Applied_Price: [CLOSE, TYPICAL, WEIGHTED]
Custom Signal Formula:
signal_value = (price * weight1 +
ma_value * weight2 +
momentum * weight3) /
(weight1 + weight2 + weight3)
Arrow Sensitivity Matrix
Adjustment Parameters:
Reversal_Arrows:
- Liquidity_Threshold: 0.5-2.0
- Volume_Confirmation: YES/NO
- Candle_Size_Min: 10-50 pips
- Session_Filter: ALL/MAJOR/CUSTOM
Pattern_Arrows:
- Pattern_Strength: 1-5
- Body_Ratio: 0.3-0.7
- Wick_Analysis: ON/OFF
- Volume_Weight: 0-100%
Display Configuration
Advanced Visual Settings
Layer Management:
Background_Layer:
- Grid: ON/OFF
- Transparency: 0-100%
- Session_Shading: CUSTOM
Indicator_Layer:
- Z-Order: CONFIGURABLE
- Overlap_Priority: USER_DEFINED
- Collision_Detection: SMART
Foreground_Layer:
- Labels: DYNAMIC/STATIC
- Info_Panels: MODULAR
- Updates: REAL-TIME/BATCHED
Color Psychology Settings
Professional Schemes:
/* Institutional Theme */
.bullish { color: #0066CC; } /* Blue instead of green */
.bearish { color: #CC0000; } /* Deep red */
.neutral { color: #666666; } /* Gray */
/* Low Fatigue Theme */
.bullish { color: #2E7D32; } /* Muted green */
.bearish { color: #C62828; } /* Muted red */
.neutral { color: #424242; } /* Dark gray */
Performance Optimization
Calculation Efficiency
Resource Allocation:
High Performance Mode:
- Calculations: GPU_ACCELERATED
- Update_Frequency: TICK
- History_Limit: 500_BARS
- Multi_Threading: ENABLED
Balanced Mode:
- Calculations: OPTIMIZED
- Update_Frequency: SECOND
- History_Limit: 1000_BARS
- Multi_Threading: AUTO
Low Resource Mode:
- Calculations: SIMPLE
- Update_Frequency: BAR_CLOSE
- History_Limit: 200_BARS
- Multi_Threading: DISABLED
Memory Management
Cache Settings:
{
"cache_size": "AUTO", // or specific MB
"cache_indicators": ["LIQUIDITY", "SR_ZONES"],
"cache_timeframes": ["M15", "H1"],
"clear_interval": 3600, // seconds
"persistent_cache": false
}
Risk Management Settings
Advanced Safety Features
Position Protection:
Max_Positions: 3
Correlation_Check: ENABLED
Max_Risk_Per_Trade: 1%
Total_Risk_Limit: 3%
Emergency_Close_All: HOTKEY
Drawdown Protection:
if (daily_drawdown >= 3%) {
warning_alert();
reduce_position_size(50%);
}
if (daily_drawdown >= 4%) {
critical_alert();
disable_new_trades();
}
if (daily_drawdown >= 4.5%) {
close_all_positions();
lock_trading();
}
News Filter Configuration
Advanced News Settings:
Impact_Levels: [HIGH, MEDIUM, LOW]
Pre_News_Pause: 30 minutes
Post_News_Resume: 15 minutes
Currencies_Affected: RELATED_ONLY
Close_Before_News: OPTIONAL
Widen_Stops: AUTO
Alert System Configuration
Complex Alert Logic
Conditional Alerts:
alert_condition = {
"trigger": "MULTIPLE",
"conditions": [
{"type": "PRICE", "level": 1.1000, "action": "TOUCH"},
{"type": "INDICATOR", "name": "RSI", "value": 70, "operator": ">"},
{"type": "TIME", "session": "LONDON", "minutes": 30}
],
"logic": "AND", // or "OR"
"action": ["SOUND", "EMAIL", "POSITION_CLOSE"]
}
Alert Filtering
Smart Alert Management:
Duplicate_Prevention: 5 minutes
Similar_Alert_Grouping: ENABLED
Priority_System: HIGH/MEDIUM/LOW
Quiet_Hours: 22:00-06:00
Max_Alerts_Per_Hour: 10
Integration Settings
API Configuration
External Connections:
[API_SETTINGS]
Enable_API = TRUE
Webhook_URL = https://your-endpoint.com
Update_Frequency = 1000ms
Data_Format = JSON
Authentication = BEARER_TOKEN
Retry_Attempts = 3
Timeout = 5000ms
Export Settings
Data Export Options:
{
"auto_export": true,
"format": "CSV",
"frequency": "SESSION_END",
"include_data": [
"trades",
"signals",
"levels",
"performance"
],
"destination": "./exports/",
"filename_pattern": "RR_{{DATE}}_{{SESSION}}"
}
Debugging & Logging
Advanced Diagnostics
Debug Levels:
Level 0: Errors only
Level 1: Warnings + Errors
Level 2: Info + Warnings + Errors
Level 3: Debug + All above
Level 4: Verbose (all calculations)
Performance Profiling:
profiler.enable({
track_calculation_time: true,
monitor_memory_usage: true,
log_slow_operations: true,
threshold_ms: 100,
export_stats: true
});
Custom Indicators
Formula Builder
Create Custom Calculations:
custom_indicator = {
name: "My_Indicator",
formula: "(H+L+C)/3 * volume_weight",
inputs: ["high", "low", "close", "volume"],
parameters: {
volume_weight: 0.5,
smoothing: 3
},
display: {
type: "line",
color: "blue",
thickness: 2
}
}
Optimization Techniques
Backtesting Configuration
Advanced Backtest Settings:
Period: CUSTOM_RANGE
Spread: VARIABLE_REALISTIC
Slippage: 0-5 pips
Commission: BROKER_SPECIFIC
Starting_Balance: USER_DEFINED
Monte_Carlo_Runs: 1000
Walk_Forward: ENABLED
Machine Learning Integration
AI Optimization:
ml_config = {
"enable_ml": true,
"model_type": "NEURAL_NETWORK",
"training_period": 365, # days
"features": ["price", "volume", "indicators"],
"update_frequency": "WEEKLY",
"confidence_threshold": 0.75
}
Best Practices
Settings Management
Version Control
- Save settings versions
- Document changes
- Track performance
- Easy rollback
Testing Protocol
- Test one change at a time
- Use demo first
- Measure impact
- Keep records
Optimization Cycle
- Monthly review
- Performance analysis
- Market adaptation
- Gradual refinement
FAQ
Q: Can I break the indicator with wrong settings? A: Extreme values may cause issues, but defaults can always be restored.
Q: How do I know if my settings are optimal? A: Track win rate, risk:reward, and drawdown over at least 100 trades.
Q: Should I share my optimized settings? A: Settings are often personal and market-dependent. Share concepts, not exact values.
Q: How often do default settings update? A: With major updates only. Your custom settings remain unchanged.
Q: Can I automate setting changes? A: Yes, through API or scheduled templates, but manual oversight recommended.
Ready to implement? Start with Strategy Guides or return to Features Overview .
đ Other Features
Road Levels
Master RelicusRoad Pro's Road Levels (Price Action Road) for dynamic support/resistance zones and âĻ
Support & Resistance
Master dynamic support and resistance zones for precise trading decisions
Action Levels
Leading price action levels that predict support and resistance before they form
Signal Lines
Master the dual signal line system for trend identification and trade timing
Daily High/Low/Open
Trade with precision using intelligent daily high/low levels and projections
Daily Pivots
Master market movements with precision Fibonacci pivot levels based on daily ranges
đ Table of Contents
⥠Quick Actions
đ Feature Info
đ Ready to Master Advanced Settings?
Join thousands of traders using RelicusRoad Pro to improve their trading results.