Hi
I am trying add the below study, to the one attached. How can i do this?
The problem i am facing is the one attached is one i created myself on formula wizard. But the one below is on an indicator that I am a member of(Kwikpop)... how can i make these 2 formulas into one??
thx
{
If (close()> call("TSKP115SPLIT.esf")) {
setBarFgColor(Color.RGB(0x00, 0x00, 0xFF));
setPriceBarColor( Color.RGB(0x00, 0x00, 0xFF) );
}
{
If (close()> call("TSKP115Split.esf")) {
setBarFGColor(Color.RGB(0xFF, 0x00, 0x00) );
setPriceBarColor(Color.RGB(0xFF,0x00,0x00) );
}
return null
}
I am trying add the below study, to the one attached. How can i do this?
The problem i am facing is the one attached is one i created myself on formula wizard. But the one below is on an indicator that I am a member of(Kwikpop)... how can i make these 2 formulas into one??
thx
{
If (close()> call("TSKP115SPLIT.esf")) {
setBarFgColor(Color.RGB(0x00, 0x00, 0xFF));
setPriceBarColor( Color.RGB(0x00, 0x00, 0xFF) );
}
{
If (close()> call("TSKP115Split.esf")) {
setBarFGColor(Color.RGB(0xFF, 0x00, 0x00) );
setPriceBarColor(Color.RGB(0xFF,0x00,0x00) );
}
return null
}
Comment