NexusFi: Find Your Edge


Home Menu

 





$30 to make an easy script


Discussion in ThinkOrSwim

Updated
    1. trending_up 1,979 views
    2. thumb_up 2 thanks given
    3. group 0 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
liquidfutures
north dakota
 
Posts: 1 since Dec 2013
Thanks Given: 0
Thanks Received: 0

All I want is a script that will display the text bullish(also green background)when ema 3 > sma 10, bearish(red background) when ema 3 < sma 10. I'm terrible with programming and willing to fork out some money to get it done right, paypal only. PM if this is within ur skill level, thanks.


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Second Night of US Strikes Crushes Iran June 15 to 3.6% …
Prediction Markets & Event Contracts
April 2026 Jobs Report: +115k vs +65k Expected
Traders Hideout
Saylors 41-Month HODL Breaks: Strategy Sells 32 BTC as $ …
Prediction Markets & Event Contracts
Kalshi Sets $4.13B All-Time Weekly Record as Polymarket …
Prediction Markets & Event Contracts
CME Launches Bitcoin Volatility Futures June 1 -- First …
Cryptocurrency
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
10 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 thanks
  #2 (permalink)
 
rmejia's Avatar
 rmejia 
Puerto Rico
 
Experience: Intermediate
Platform: thinkorswim
Broker: TD Ameritrade
Trading: Options
Posts: 379 since Oct 2010
Thanks Given: 3,614
Thanks Received: 439

Something like this?:

 
Code
input price = close;
input fastLength = 3;
input slowLength = 10;
input displace = 0;
input FastAverageType = {default EMA, SMA};
input SlowAverageType = {default SMA, EMA};
input Label = Yes;

plot fastAvg;
switch (FastAverageType) {
case SMA:
    fastAvg = Average(price[-displace], fastLength);
case EMA:
    fastAvg = ExpAverage(price[-displace], fastLength);
}

plot slowAvg;
switch (SlowAverageType) {
case SMA:
    slowAvg = Average(price[-displace], slowLength);
case EMA:
    slowAvg = ExpAverage(price[-displace], slowLength);
}

fastAvg.SetDefaultColor(GetColor(1));
slowAvg.SetDefaultColor(GetColor(0));


AddLabel(Label, if fastAvg > slowAvg[1] then " Bullish " else " Bearish ", if fastAvg > slowAvg[1] then Color.Green else Color.Red);


Reply With Quote
Thanked by:




Last Updated on December 16, 2013


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts