I am going to compare current price with my previous entry price.
Example>:
If ( RSI < 25 )
{
EnterLong;
}
If ( CurrentPrice < Previous Entry Price)
{
EnterLong;
}
For CurrentPrice I can use Close[0], but how can I get previous entry price ?
Thanks in advance.

Comment