The source code for cTrader is not available since cTrader is not an open source project.
Best regards,
Panagiotis
What IDE would you recommend for beginner to see all possible combinations of var and strings ?
especially I'm interested to discover Bars Reverses , to reduce computing time and identify breaks more often without use of indicators .
Would this works ?
Aggregation:
Average(): Computes the average of a sequence of numeric values.
Sum(): Computes the sum of a sequence of numeric values.
Max(): Returns the maximum value in a sequence.
Min(): Returns the minimum value in a sequence.
Filtering:
Where(): Filters a sequence of values based on a predicate.
Ordering:
OrderBy(): Sorts the elements of a sequence in ascending order.
OrderByDescending(): Sorts the elements of a sequence in descending order.
algobeginner
16 Dec 2024, 11:31
( Updated at: 16 Dec 2024, 11:53 )
I tried to update it and make it only buy for example on three white soldiers
This code seem to work , can someone make it better to use less resources ?
using System;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
namespace cAlgo.Robots
{
[Robot(AccessRights = AccessRights.None, AddIndicators = true)]
public class ThreeWhiteSoldiersandThreeCrows : Robot
{
[Parameter(DefaultValue = 1000)]
public double Volume { get; set; }
[Parameter(DefaultValue = 10)]
public double TakeProfit { get; set; }
[Parameter(DefaultValue = 10)]
public double StopLoss { get; set; }
private const double PipSize = 0.0001; // Adjust this for different instruments (e.g., 0.01 for JPY pairs)
private double adjustedStopLoss;
// Define string constants for position labels
private const string BuyLabel = "Three White Soldiers";
protected override void OnBar()
{
// Three White Soldiers
if (Bars.ClosePrices.Last(1) > Bars.OpenPrices.Last(1)
&& Bars.ClosePrices.Last(2) > Bars.OpenPrices.Last(2)
&& Bars.ClosePrices.Last(3) > Bars.OpenPrices.Last(3))
{
HandleBuyOrder();
}
}
private void HandleBuyOrder()
{
var existingBuyPositions = Positions.FindAll(BuyLabel); // Fix: Use string label here
if (existingBuyPositions.Length > 0)
{
// Check if the first position has reached 5 pips profit
var firstPosition = existingBuyPositions[0];
if (firstPosition.GrossProfit >= 5 * PipSize)
{
// Adjust the stop loss of the first position
adjustedStopLoss = (firstPosition.StopLoss ?? 0) + 5 * PipSize; // Fix: Handle nullable StopLoss
var modifyResult = ModifyPosition(firstPosition, adjustedStopLoss, firstPosition.TakeProfit);
if (!modifyResult.IsSuccessful)
{
Print("Failed to modify position: " + modifyResult.Error);
}
// Open a new position
var orderResult = ExecuteMarketOrder(TradeType.Buy, Symbol.Name, Volume, BuyLabel, StopLoss, TakeProfit);
if (!orderResult.IsSuccessful)
{
Print("Failed to execute market order: " + orderResult.Error);
}
}
}
else
{
// No existing buy positions, open a new one
var orderResult = ExecuteMarketOrder(TradeType.Buy, Symbol.Name, Volume, BuyLabel, StopLoss, TakeProfit);
if (!orderResult.IsSuccessful)
{
Print("Failed to execute market order: " + orderResult.Error);
}
}
}
}
}
I tried to update it and make it only buy for example on three white soldiers
I have tried to simplify it and make it easier but still struggling to make logic of existingBuyPosition or existingSellPositions with some label and find function,
private void HandleBuyOrder()
{
var existingBuyPositions = Positions.FindAll(BuyLabel, TradeType.Buy);
if (existingBuyPositions.Length > 0)
{
// Check if the first position has reached 5 pips profit
var firstPosition = existingBuyPositions[0];
if (firstPosition.GrossProfit >= 5 * PipSize)
{
// Adjust the stop loss of the first position
adjustedStopLoss = firstPosition.StopLoss + 5 * PipSize;
var modifyResult = ModifyPosition(firstPosition, adjustedStopLoss, firstPosition.TakeProfit);
if (!modifyResult.IsSuccessful)
{
Print("Failed to modify position: " + modifyResult.Error);
}
// Open a new position
var orderResult = ExecuteMarketOrder(TradeType.Buy, Symbol.Name, Volume, BuyLabel, StopLoss, TakeProfit);
if (!orderResult.IsSuccessful)
{
Print("Failed to execute market order: " + orderResult.Error);
}
}
}
else
{
// No existing buy positions, open a new one
var orderResult = ExecuteMarketOrder(TradeType.Buy, Symbol.Name, Volume, BuyLabel, StopLoss, TakeProfit);
if (!orderResult.IsSuccessful)
{
Print("Failed to execute market order: " + orderResult.Error);
}
algobeginner
24 Dec 2024, 11:19
RE: IDE for CTrader
PanagiotisCharalampous said:
What IDE would you recommend for beginner to see all possible combinations of var and strings ?
especially I'm interested to discover Bars Reverses , to reduce computing time and identify breaks more often without use of indicators .
Would this works ?
@algobeginner