از این مرجع فوق تخصصی بپرسید
وایپر گفت fl/oz روی اون شیشه یعنی چی
بعد بپرس عطر با ادکلن چه فرقی دارد
پوریا چقدر رفتی پول دادی این کصشعرا رو برات میکس کردن .
اسکل میرفتی میدادی چند تا بچه یتیم . اون وخ درست میشد
یه سوال دیگه بپرس بگو
Eue the perfume
Eue the colne
با هم چه فرقی دارن
بعد بزن زیر گوشش اگه بلد نبود
:)
خودش میفهمه چرا خورده
using cAlgo.API;
using cAlgo.API.Internals;
using System;
namespace cAlgo
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class CurrentPriceDisplay : Indicator
{
private TextBlock _priceTextBlock;
[Parameter("Horizontal Margin (Pixels)", DefaultValue = -632, MinValue =-1000)]
public int HorizontalMargin { get; set; }
[Parameter("Vertical Margin (Pixels)", DefaultValue = 0, MinValue = -1000)]
public int VerticalMargin { get; set; }
protected override void Initialize()
{
var stackPanel = new StackPanel
{
HorizontalAlignment = HorizontalAlignment.Center,
VerticalAlignment = VerticalAlignment.Top,
Margin = new Thickness(HorizontalMargin, VerticalMargin, 0, 0),
BackgroundColor = Color.Black,
Opacity = 0.6
};
var style = new Style();
style.Set(ControlProperty.Padding, 1);
style.Set(ControlProperty.BackgroundColor, Color.Transparent);
style.Set(ControlProperty.ForegroundColor, Color.Yellow);
style.Set(ControlProperty.FontSize, 20);
_priceTextBlock = new TextBlock
{
Text = "Prices: ",
Style = style
};
stackPanel.AddChild(_priceTextBlock);
Chart.AddControl(stackPanel);
Timer.Start(TimeSpan.FromSeconds(1));
}
protected override void OnTimer()
{
double bid = Symbol.Bid;
double ask = Symbol.Ask;
double spread = Math.Max(bid, ask) - Math.Min(bid, ask);
_priceTextBlock.Text = $"Bid: {bid:F5} | Ask: {ask:F5} | Spread: {spread:F5}";
}
public override void Calculate(int index)
{
// This example does not need to perform any calculations on every tick/bar
}
}
}
بعد از چند قرن
حتی اسم ریمان هم بلد نیستن و کج و کوله مینویسن
و آنها هیچ چیز در مورد اون آدم ها نمیدانند